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

animation 秒简单笔记

时间:2017-05-07 11:37:02      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:position   简单   animation   otto   code   osi   tle   nsf   style   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .biao {
            width: 300px;
            height: 300px;
            background-color: #FFFF8B;
            border-radius: 50%;
            border: 2px solid #E42837;
            position: relative;
        }

        .miaozhen {
            width: 4px;
            height: 150px;
            background-color: #000;
            position: absolute;
            left:50%;
            animation:go 60s infinite steps(60);
            /*steps()停一次*/
            transform-origin: center bottom;
        }
        @keyframes go {
            0%{
                transform: rotate(0deg);
            }
            100%{
                transform: rotate(360deg);
            }
        }
    </style>
</head>
<body>
    <div class="biao">
        <div class="miaozhen"></div>
    </div>
</body>
</html>

 

animation 秒简单笔记

标签:position   简单   animation   otto   code   osi   tle   nsf   style   

原文地址:http://www.cnblogs.com/-CLAY-/p/animation2.html

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