1. 程式人生 > >css中transition的用法

css中transition的用法

鼠標 web per eight hover tran 漸變 webkit style

<style>
div
{
width:100px;
height:100px;
transition:width 2s;
-moz-transition:width 2s; /* Firefox 4 */
-webkit-transition:width 2s; /* Safari and Chrome */
-o-transition:width 2s; /* Opera */
}

div:hover
{
width:300px;
}
</style>

把鼠標指針放到 div 元素上,其寬度會從 100px 逐漸變為 300px:

css中transition的用法