码迷,mamicode.com
首页 > 其他好文 > 详细

旋转的小黄人(每天进步一点点)

时间:2014-12-28 15:31:01      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

今天看到一个有点炫酷的效果,于是学习了下。

旋转的小黄人(萌翻了)

技术分享

代码也很简单,一起来看看是怎么实现的吧。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .roll{
            background:url(author.jpg) no-repeat center;
            height:220px;
            width:220px;
            border-radius:110px;
            transition: transform 2s;
        }
        .roll:hover{
            transform: rotate(360deg);
        }
    </style>
</head>
<body>
    <div class="roll"></div>
</body>
</html>

图片随便挑一张自己喜欢的吧!

每天一博,记录每天的学习成果,加油!

旋转的小黄人(每天进步一点点)

标签:

原文地址:http://www.cnblogs.com/wuLiuyang/p/4189947.html

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