码迷,mamicode.com
首页 > 其他好文 > 详细

animation-play-state

时间:2014-08-21 12:51:24      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   ar   div   html   line   htm   

animation-play-state:

css:

.play-state{
-webkit-animation:f1 2s 0.5s infinite linear forwards alternate;
-moz-animation:f1 2s 0.5s infinite linear forwards alternate;
position:relative;
left:10px;
width:100px;
height:100px;
margin:10px 0;
overflow:hidden;
}
.play-state:hover{
-webkit-animation-play-state:paused;
-moz-animation-play-state:paused;
}
@-webkit-keyframes f1{
0%{left:10px;}
100%{left:500px;}
}
@-moz-keyframes f1{
0%{left:10px;}
100%{left:500px;}
}

 

html:

<div class="play-state">鼠标移过来我就停,移走就运动,好听话哦!</div>   

 

animation-play-state,布布扣,bubuko.com

animation-play-state

标签:os   io   for   ar   div   html   line   htm   

原文地址:http://www.cnblogs.com/xiaotaiyang/p/3926729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!