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

CSS3 transition 动画过度属性

时间:2014-09-02 17:43:15      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   div   sp   html   on   c   ad   

<!DOCTYPE html>
<html>
<head>
<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>
</head>
<body>
<div></div>
<p>请把鼠标指针移动到蓝色的 div 元素上,就可以看到过渡效果。</p>
<p><b>注释:</b>本例在 Internet Explorer 中无效。</p>
</body>
</html>

CSS3 transition 动画过度属性

标签:style   io   ar   div   sp   html   on   c   ad   

原文地址:http://www.cnblogs.com/mrjie/p/3951647.html

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