码迷,mamicode.com
首页 > Web开发 > 详细

css3渐变 transition使用方法

时间:2018-01-06 12:13:49      阅读:167      评论:0      收藏:0      [点我收藏+]

标签::hover   safari   -o   chrome   ack   渐变   div   width   rom   

<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使用方法

标签::hover   safari   -o   chrome   ack   渐变   div   width   rom   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!