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

html5 图片旋转 --位置定位

时间:2017-08-03 11:10:17      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:int   yellow   xpl   internet   html5   explorer   图片   head   黄色   

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
width:100px;
height:100px;
background:yellow;
transition:width 2s, height 2s;
-moz-transition:width 2s, height 2s, -moz-transform 2s; /* Firefox 4 */
-webkit-transition:width 2s, height 2s, -webkit-transform 2s; /* Safari and Chrome */
-o-transition:width 2s, height 2s, -o-transform 2s; /* Opera */
}

div:hover
{
width:200px;
height:200px;
transform:rotate(180deg);
-moz-transform:rotate(180deg); /* Firefox 4 */
-webkit-transform:rotate(180deg); /* Safari and Chrome */
-o-transform:rotate(180deg); /* Opera */
-webkit-transform:translate(200px,200px); /* 到达的位置*/
} </style> </head> <body> <div>请把鼠标指针放到黄色的 div 元素上,来查看过渡效果。</div> <p><b>注释:</b>本例在 Internet Explorer 中无效。</p> </body> </html>

 

html5 图片旋转 --位置定位

标签:int   yellow   xpl   internet   html5   explorer   图片   head   黄色   

原文地址:http://www.cnblogs.com/benpaodegegen/p/7278297.html

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