听说code能改变world,所以就学了

CSS3属性之:transition

<!doctype html>
<html>
  <head>
      <style>
         .round01{
          width: 42px; 
        height: 42px;
             border-radius: 50px;
             position: relative;
        background:#000;
        transition:background 2s;
        /*transition*属性值:过度时间*/
         }
       .round01:hover{background: red;}

         
}
      </style>

  </head>
  <body>
    <h1>transition属性说明</h1>
    <div class="round01">   
    </div>
</html>

 

posted @ 2013-11-17 11:04  李腾  阅读(168)  评论(0编辑  收藏  举报

如果我加了黑链呢:http://liteng.org