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

css加载动画

时间:2019-12-11 19:41:02      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:isp   spl   loading   parent   width   动画   ota   near   index   

<div id="loading">
      <i></i>
    </div>
        #loading{
          display: block;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 999;
          background: #fff;
        }
        #loading i {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 50px;
          height: 50px;
          border: 4px solid #000;
          border-right-color: transparent;
          border-radius: 50%;
          animation: loadingAnimation 0.8s infinite Linear;
          margin: auto;
        }
        @keyframes loadingAnimation {
          from {
            transform: rotate(0deg);
          }
          to {
            transform: rotate(360deg);
          }
        }

css加载动画

标签:isp   spl   loading   parent   width   动画   ota   near   index   

原文地址:https://www.cnblogs.com/Everythingisobject/p/12024388.html

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