我正在尝试在完成后让CSS动画属性停留,这可能吗?
这就是我想要实现的目标......
当用户登陆页面时,该元素应该被隐藏,3秒后(或其他),它应该淡入,一旦动画完成它应该留在那里。
这是一个小提琴尝试...... http://jsfiddle.net/GZx6F/
以下是保存代码......
<h2>Test</h2>
<style>
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 0.9;
}
}
h2 {
animation: fadeIn 1s ease-in-out 3s;
}
</style>
我知道如何用jQuery做这件事......就像这样......
<h2>test</h2>
<script>
$(document).ready(function(){
$('h2').hide().delay(3000).fadeIn(3000)
});
</script>
答案 0 :(得分:126)
我认为您正在寻找animation-fill-mode
CSS3属性
https://developer.mozilla.org/en/CSS/animation-fill-mode
动画填充模式CSS属性指定CSS动画在执行之前和之后应如何将样式应用于目标。
为了您的目的,只需尝试设置
h2 {
animation: fadeIn 1s ease-in-out 3s;
animation-fill-mode: forwards;
}
设置前进值«目标将保留执行期间遇到的最后一个关键帧设置的计算值»
答案 1 :(得分:10)
除了answer的@Fabrizio Calderan之外,您还可以说,您甚至可以将animation-fill-mode
属性forwards
直接应用于animation
。所以以下内容也应该有效:
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 0.9;
}
}
h2 {
opacity: 0;
animation: fadeIn 1s ease-in-out 3s forwards;
}
<script src="//cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<h2>Test</h2>
答案 2 :(得分:0)
我发生了类似的事情。我添加了位置:相对于动画元素,并为我修复了它。
答案 3 :(得分:0)
如何为元素设置动画并使其在动画完成后保持不变:
// Beggin
#box {
/* Give it a width, a height and a background so can see it */
width: 200px;
height: 200px;
/* Unimportant styling */
box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4) inset;
border-radius: 7px;
background: linear-gradient(to bottom, #fff 30%, #fcfcfc 40%, #f8f8f8 50%, #f0f0f0 100%);
/* Starts here: */
opacity: 0;
animation: yourName 2800ms ease-in-out 0s forwards;
}
@keyframes yourName {
0% /* (from) */ {
opacity: 0;
}
100% /* (to) */ {
opacity: 1;
}
}
<div id="box"></div>