作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个模态窗口,我试图在大约 7 秒后出现,带有一个关闭按钮,以便用户可以根据需要关闭它。当您使用以下代码单击关闭按钮时,我关闭了它:
.tip {
z-index: 99999;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
-o-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
}
.tip:target {
opacity:1;
pointer-events: auto;
}
和 HTML:
<a href="#tip1">Open Modal</a>
<div class="tip" id="tip1">
Try clicking around a bit.
<a href="#close" title="Close" class="close">X</a>
</div>
我如何让它在短暂延迟后首次加载页面时自动显示?我尝试使用 CSS 关键帧,但它会在出现后瞬间消失,或者关闭按钮根本不起作用。
最佳答案
您可以使用动画初始值:(这是普通的)
animation-delay: 7s
我已经为您准备了工作示例。我还使用了 animation-fill-mode: forwards
,所以在动画结束后,不透明度保持为 1(不等于动画开始前的 0)
animation-fill-mode: forwards;
一共(速记):
animation: myFade 0.5s linear 5s;
地点:
myFade
是您的动画名称5s
是延迟0.5s
是动画的持续时间linear
是计时函数下面是工作示例:
.tip {
z-index: 99999;
opacity: 0;
animation: myFade 0.5s linear 2s ;
animation-fill-mode: forwards;
width: 200px;
height: 80px;
border: 1px solid rgba(0, 0, 0, 0.4);
border-radius: 3px;
padding: 20px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
position: absolute;
margin:20px 30px;
}
@-webkit-keyframes myFade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.tip:target {
display:none;
}
.btn {
padding: 7px 8px;
background: #3786ad;
font-size:12px;
font-family: Arial, sans-serif;
color: #fff;
text-decoration: none;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
<p>After 2 seconds popup would appear. Click [X] to close it.</p>
<br />
<a href="#tip1" class="btn">Open Modal</a>
<div class="tip" id="tip1">
Try clicking around a bit.
<a href="#tip1" title="Close" class="close">X</a>
</div>
关于css - 延迟的 CSS3 模态窗口淡入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30860115/
我是一名优秀的程序员,十分优秀!