码迷,mamicode.com
首页 > Web开发 > 详细

css 3 animation

时间:2015-05-04 19:59:58      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

  @keyframes fadein {

    0%{

      opacity:0;

      background-color:red;

    }

     40% {

      background-color:darkblue;

    }

    70% {

      background-color:gold;

    }

    100% {

      opacity:1;

      background-color:yellow;

    }

  }

  body {

    -webkit-animation:fadein 5s linear 1;

  }

  #animate_1{

      border:1px solid red;

      width:300px;

      height:300px;

  }

  #animate_1{

animation: fadein 1000ms linear;

  }

----------------

http://www.w3school.com.cn/cssref/pr_animation.asp

css 3 animation

标签:

原文地址:http://www.cnblogs.com/qinqiu/p/4476836.html

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