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

【css3】动画transition

时间:2014-08-14 16:41:48      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   2014   div   

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <style type=‘text/css‘>
    img{ width:200px; height:200px;transition:1s;}//transition的作用在于,指定状态变化所需要的时间。
    img:hover{ width:400px; height:400px;}
  </style>
</head>
<body>
<img src=‘http://img.mymhotel.com/front/suprise1209.jpg‘>
</body>
</html>

//我们可以指定transition适用的属性,比如只适用于height

transition:1s height;

 

 

 

//源文地址:http://www.ruanyifeng.com/blog/2014/02/css_transition_and_animation.html

【css3】动画transition,布布扣,bubuko.com

【css3】动画transition

标签:style   blog   http   color   io   ar   2014   div   

原文地址:http://www.cnblogs.com/positive/p/3912694.html

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