CSS3过渡效果(transition)的使用实例

作者:袖梨 2022-06-25
提示:您可以先修改部分代码再运行
CSS3过渡效果(transition)的使用实例
注意,请使用FF Chrome等支持CSS3样式的浏览器观看效果
鼠标移到上面方框查看校果
CSS样式代码如下:

.box {


background: #222;
margin: 0 auto;
-webkit-transition: width 2s ease, height 2s ease;
-moz-transition: width 2s ease, height 2s ease;
-o-transition: width 2s ease, height 2s ease;
-ms-transition: width 2s ease, height 2s ease;
transition: width 2s ease, height 2s ease;
}

.box:hover {


}

提示:您可以先修改部分代码再运行

相关文章

精彩推荐