如何创建弹出窗口 您所在的位置:网站首页 html5弹框 如何创建弹出窗口

如何创建弹出窗口

2024-07-01 06:32| 来源: 网络整理| 查看: 265

/* 弹出容器 */ .popup {  position: relative;  display: inline-block;  cursor: pointer;}

/* 实际弹出窗口(出现在顶部)*/ .popup .popuptext {  visibility: hidden;  width: 160px;  background-color: #555;  color: #fff;  text-align: center;  border-radius: 6px;  padding: 8px 0;  position: absolute;  z-index: 1;  bottom: 125%;  left: 50%;   margin-left: -80px;}

/* 弹出箭头 */ .popup .popuptext::after {  content: "";   position: absolute;  top: 100%;  left: 50%;  margin-left: -5px;  border-width: 5px;  border-style: solid;   border-color: #555 transparent transparent transparent;}

/* 单击弹出容器时切换此类(隐藏和显示弹出窗口)*/ .popup .show {  visibility: visible;  -webkit-animation: fadeIn 1s;  animation: fadeIn 1s}

/* 添加动画(在弹出窗口中淡入) */ @-webkit-keyframes fadeIn {   from {opacity: 0;}   to {opacity: 1;}}

@keyframes fadeIn {  from {opacity: 0;}  to {opacity:1 ;}}



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有