css3中的动画功能

Posted double2014

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css3中的动画功能相关的知识,希望对你有一定的参考价值。

直接用我的一段代码演示下css3中实现动画效果的事例,让一个div自动旋转起来

代码如下:

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
  <style type="text/css">
    .ellipsis{
        width:200px;
        height:200px;
        line-height:200px;
        border:1px solid red;
        overflow:hidden;
        white-space:nowrap;
        text-overflow:ellipsis;
        animation: 5.5s linear 0s normal none infinite rotate;
    }
    @-webkit-keyframes rotate{
        from{-webkit-transform:rotate(0deg)}
        to{-webkit-transform:rotate(360deg)}
    }
    @-moz-keyframes rotate{
        from{-moz-transform:rotate(0deg)}
        to{-moz-transform:rotate(360deg)}
    }
    @-ms-keyframes rotate{
        from{-ms-transform:rotate(0deg)}
        to{-ms-transform:rotate(360deg)}
    }
    @-o-keyframes rotate{
        from{-o-transform:rotate(0deg)}
        to{-o-transform:rotate(360deg)}
    }
  </style>
 </head>
 <body>
  <div class="ellipsis">ellipsisellipsisellipsisellipsisellipsisellipsisellipsis</div>

 </body>
</html>

 

以上是关于css3中的动画功能的主要内容,如果未能解决你的问题,请参考以下文章

CSS3背后强大的动画功能—移动

CSS3 animation 属性中的 steps 功能符深入介绍

Firefox 中的 CSS3 动画和背景图像

26个精致的CSS3动画效果源代码下载

CSS3中的动画效果transform:translateZ(),在Z轴上移动xx距离

CSS3动画