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

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

旋转的小黄人(萌翻了)

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

<!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>

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

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

posted @ 2014-12-28 14:24  梦想开始的地方  阅读(156)  评论(0编辑  收藏  举报