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

css 旋转动画

时间:2015-10-21 17:25:33      阅读:457      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>

<head>
    <title>rotate</title>
    <style type="text/css">
    * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
        border: none;
    }
    
    body {
        margin: 0;
        padding: 0;
    }
    
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    .inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #FF00FF;
    }
    
    .inner img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }
    
    .out {
        width: 210px;
        height: 210px;
        border: 1px dashed red;
        border-radius: 50%;
        padding: 5px;
        animation: spin 6s linear infinite;
    }
    </style>
</head>

<body>
    <div class="out">
        <div class="inner">
            <img src="1.jpg">
        </div>
    </div>
</body>

</html>

 

css 旋转动画

标签:

原文地址:http://www.cnblogs.com/wind90/p/4898242.html

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