我希望css3动画具有以下要求,如果有人分享他/她的经验会很棒
我有三张图片
image1.jpg :这将从底部开始动画,(image2.jpg和image3.jpg应隐藏)
image2.jpg :一旦image1.jpg加载(image3.jpg应隐藏),这将出现在舞台上
image3.jpg :这是最后一张图片会出现在image2.jpg
之后感谢你的支持
答案 0 :(得分:1)
这样的东西? http://jsfiddle.net/2hSqz/3/
以下是动画示例:
div { animation-name: myfirst; animation-duration: 5s; animation-timing-function: linear; animation-delay: 2s; animation-iteration-count: infinite; animation-direction: alternate; animation-play-state: running; }
@keyframes myfirst { from {background: red;} to {background: yellow;} }
对于像
这样的每个浏览器来优化它会很棒答案 1 :(得分:0)
我不明白你想要什么,但我正在努力帮助,也许你想要这样。
<style>
@keyframes move
{
from{top:100%}
to{top:0}
}
@keyframes visible
{
from{opacity:0}
to{opacity:1}
}
#img1{animation:move 5s; position:relative;}
#img2{animation:visible both 3s; animation-delay:5s; opacity:0;}
#img3{animation:visible both 3s; animation-delay:8s; opacity:0;}
</style>
希望这是你想要的!