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

css旋转效果

时间:2018-02-07 11:54:44      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:near   oct   height   lin   body   div   for   title   css   

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
  .box {
    width: 100px;
    height: 100px;
    background: green;
    animation: rotate 4s linear infinite;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  </style>
</head>

<body>
  <div class="box"></div>
</body>

</html>

css旋转效果

标签:near   oct   height   lin   body   div   for   title   css   

原文地址:https://www.cnblogs.com/yesyes/p/8425563.html

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