首页 > 代码库 > 旋转的小黄人(每天进步一点点)

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

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

旋转的小黄人(萌翻了)

技术分享

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

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

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

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

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