好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

CSS3实现的div元素水平运动指定距离_html/css_WEB-ITnose

CSS3实现的div元素水平运动指定距离:
本章节分享一段,它实现了利用CSS3让div元素水平运动一段距离。
代码实例如下:

          蚂蚁部落   div{  width:100px;  height:100px;  background:green;  position:relative;  animation:theanimation 5s forwards;   -webkit-animation:theanimation 5s forwards; } @keyframes theanimation{   0% {left:0px;}   100% {left:200px;} } @-webkit-keyframes theanimation{   0% {left:0px;}   100% {left:200px;} }    

查看更多关于CSS3实现的div元素水平运动指定距离_html/css_WEB-ITnose的详细内容...

  阅读:29次