css loading

简介: css /*loading*/ .loader { width: 100px; height: 101px; border: 8px solid; border-top-color: hsl(154,100%,31%);...

css 

/*loading*/
      .loader {
        width: 100px;
        height: 101px;
        border: 8px solid;
        border-top-color: hsl(154,100%,31%);
        border-left-color: hsl(216,87%,52%);
        border-bottom-color: hsl(8,66%,50%);
        border-right-color: hsl(42,100%,51%);
        border-radius: 50%;
        transform: rotate(45deg);
        margin: 30px auto;
      }
      p.loading {
        display: inline-block;
        width: 107px;
        height: 107px;
        /* The background is used to specify the border background */
        background: linear-gradient(90deg, hsla(212,67%,36%,0) 0%,
                                               hsla(207,69%,51%,0) 76%,
                                               hsla(0,0%,100%,1) 85%,
                                               hsla(0,0%,100%,1) 100%); /* W3C */
        /* Background origin is the padding box by default.
        Override to make the background cover the border as well. */
        -moz-background-origin: border;
        background-origin: border-box;
        /* A transparent border determines the width */
        border: 6px solid transparent;
        border-radius: 50%;
        box-shadow: inset -999px 0 0 #fff; /* The background color */
        transform: translate(-8px, 55px);
        animation: loading 1s linear infinite;
      }

      @keyframes loading {
          0% { transform: translate(-9px, -25px) rotate(0deg); }
        100% { transform: translate(-9px, -25px) rotate(360deg); }
      }

效果如下:

 

 更多loading:

https://www.qianduan.net/free-html5-css3-loaders-preloaders/

目录
相关文章
|
28天前
|
前端开发
进来!手把手教用css动画写loading效果
进来!手把手教用css动画写loading效果
|
29天前
|
前端开发
纯 CSS 实现十个还不错的 Loading 效果,可直接用!
纯 CSS 实现十个还不错的 Loading 效果,可直接用!
|
4月前
css3实现圆环loading
css3实现圆环loading
81 1
|
4月前
|
前端开发 索引 容器
CSS 实现七彩圆环loading动画
CSS 实现七彩圆环loading动画
88 0
|
9月前
|
前端开发
HTML+CSS制作旋转的loading效果
HTML+CSS制作旋转的loading效果
|
缓存 前端开发
怎么处理 Loading CSS chunk xx failed
怎么处理 Loading CSS chunk xx failed
1841 0
|
前端开发 JavaScript
svg或css,写loading圆环和百分比
svg或css,写loading圆环和百分比
294 0
|
前端开发
用CSS做一个好看的Loading加载效果
一个好看的吃豆人loading效果
|
前端开发 容器
巧用 CSS 实现动态线条 Loading 动画
巧用 CSS 实现动态线条 Loading 动画
608 0
巧用 CSS 实现动态线条 Loading 动画
|
前端开发
炫酷的CSS3 loading加载动画,总有一款适合你
炫酷的CSS3 loading加载动画,总有一款适合你
733 0
炫酷的CSS3 loading加载动画,总有一款适合你