首页 > Web开发 > 详细

css3渐变 transition使用方法

时间:2018-01-06 10:49:03      阅读:219      评论:0      收藏:0      [点我收藏+]
<style> 
div
{
  width:100px;
  height:100px;
  background:blue;
  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></div>

 

css3渐变 transition使用方法

原文:https://www.cnblogs.com/bubuchu/p/8213384.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!