css中transition的用法

<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:

 

posted @ 2018-10-18 22:48  ▍凉城空巷°  阅读(580)  评论(0编辑  收藏  举报