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

使用 css 的 keyframe 实现 loading 动画

时间:2018-03-26 10:52:10      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:ade   direct   none   idt   key   func   loader   oct   head   

 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css animation</title>
  <style>
    body {
      background-color: gray;
    }
    @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
    @-webkit-keyframes spin { 100% { -webkit-transform:  rotate(360deg); } }
    @keyframes spin { 100% { -webkit-transform:  rotate(360deg); transform: rotate(360deg); } }

    .preloader {
      animation-name: spin;
      animation-duration: .5s;
      animation-timing-function: linear;
      -webkit-animation-delay: 0s;
      animation-animation-delay: 0s;
      animation-iteration-count: infinite;
      animation-direction: normal;
      animation-fill-mode: none;
      animation-play-state: running;
      border: 2px solid transparent;
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
      border-radius: 50px;
      opacity: 1;
      width: 32px;
      height: 32px;
      cursor: wait;
      display: block;
      transition: all 400ms ease !important;
      -webkit-animation: spin .6s linear infinite;
      -o-animation: spin .6s linear infinite;
      animation: spin .6s linear infinite;
    }

    #animation {

    }
  </style>
</head>
<body>

<div id="animation" class="preloader"></div>

</body>
</html>

  

技术分享图片

 

使用 css 的 keyframe 实现 loading 动画

标签:ade   direct   none   idt   key   func   loader   oct   head   

原文地址:https://www.cnblogs.com/eleven24/p/8648839.html

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