<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
*{padding:0margin:0border:0}
.left{width:50%float:left
animation:myfirst 5s
-moz-animation:myfirst 5s/* Firefox */
-webkit-animation:myfirst 5s/* Safari and Chrome */
-o-animation:myfirst 5s/* Opera */
}
.right{width:50%float:left
animation:myfirst 5s
-moz-animation:myfirst 5s/* Firefox */
-webkit-animation:myfirst 5s/* Safari and Chrome */
-o-animation:myfirst 5s/* Opera */
animation-delay: 5s/* W3C 和 Opera */
-moz-animation-delay: 5s/* Firefox */
-webkit-animation-delay: 5s/* Safari 和 Chrome */
}
@keyframes myfirst
{
0% { opacity:0}
100% { opacity:1}
}
@-moz-keyframes myfirst /* Firefox */
{
0% { opacity:0}
100% { opacity:1}
}
@-webkit-keyframes myfirst /* Safari 和 Chrome */
{
0% { opacity:0}
100% { opacity:1}
}
@-o-keyframes myfirst /* Opera */
{
0% { opacity:0}
100% { opacity:1}
}
</style>
</head>
<body>
<div>
<div class="left"><img src="images/xxx.jpg"></div>
<div class="right">文字XXXXXXXXXXXXXXXXXXXXXXXX </div>
</div>
</body>
</html>
创建动画序列,需要使用animation属性或其子属性,该属性允许配置动画时间、时长以及其他动画细节,但该属性不能配置动画的实际表现,动画的实际表现是由 @keyframes规则实现,具体情况参见使用keyframes定义动画序列小节部分。transition也可实现动画。transition强调过渡,是元素的一个或多个属性发生变化时产生的过渡效果,同一个元素通过两个不同的途径获取样式,而第二个途径当某种改变发生(如hover)时才能获取样式,这样就会产生过渡动画。
其实css3有两种方式实现这个效果:
1. css3 过度transition
.class{position:relative
-webkit-transition: top 10s linear /*top 时间(用秒计算)s linear*/
-moz-transition: top 10s linear
-o-transition: top 10s linear
transition: top 10s linear
}
.class:hover{
top:100px
}
详见:http://www.w3school.com.cn/css3/css3_transition.asp
2. css3 动画animation
@-webkit-keyframes myfirst{from {top: 0}
to {top: 100px}
}
@-moz-keyframes myfirst{
from {top: 0}
to {top: 100px}
}
@-o-keyframes myfirst{
from {top: 0}
to {top: 100px}
}
@keyframes myfirst{
from {top: 0}
to {top: 100px}
}
.class{
position:relative
}
.class:hover{
-webkit-animation:myfirst 10s
-moz-animation:myfirst 10s
-o-animation:myfirst 10s
animation:myfirst 10s
}
详见:http://www.w3school.com.cn/css3/css3_animation.asp