如何触发css3动画

如何触发css3动画

1、可以选择利用css的状态:hover,focus,active 来触发,也可以一开始就触发。

<!DOCTYPE html>
<html>
<head>
  <style>
    #aaa {
      width: 100px;
      height: 100px;
      background: blue;
      transition: width 2s;
      -moz-transition: width 2s; /* Firefox 4 */
      -webkit-transition: width 2s; /* Safari and Chrome */
      -o-transition: width 2s; /* Opera */
    }
    #aaa:hover{
        width: 200px;
    }
    #aaa:active{
        width: 300px;
    }
  </style>
</head>
<body>
  <div id="aaa"></div>
</body>
</html>

2、使用Js点击触发过渡Transitions效果,指定的属性名称是width

<!DOCTYPE html>
<html>
<head>
  <style>
    #aaa {
      width: 100px;
      height: 100px;
      background: blue;
      transition: width 2s;
      -moz-transition: width 2s; /* Firefox 4 */
      -webkit-transition: width 2s; /* Safari and Chrome */
      -o-transition: width 2s; /* Opera */
    }
  </style>
  <script>
    function big() {
      document.getElementById("aaa").style.width = "300px";
    }
    function small() {
      document.getElementById("aaa").style.width = "100px";
    }
  </script>
</head>
<body>
  <button onclick="big()">Big</button>
  <button onclick="small()">Small</button>
  <div id="aaa"></div>
</body>
</html>

效果:

更多CSS相关技术文章,请访问CSS3答疑栏目进行学习!

以上就是如何触发css3动画的详细内容,更多请关注易知道|edz.cc其它相关文章!

推荐阅读