好得很程序员自学网

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

css3中变形与动画(二)_html/css_WEB-ITnose

css3制作动画的几个属性:变形(transform),过渡(transition)和动画(animation)。

transform介绍过了。接下来介绍过渡transition。

一、例子

先通过一个例子感性认识一下transition的动画效果。

鼠标放上去,div宽度从100px增大到200px。

     div{        width: 100px;        height: 100px;        background-color: red;    }    div:hover{        width: 200px;    } 

查看更多关于css3中变形与动画(二)_html/css_WEB-ITnose的详细内容...

  阅读:25次