加载中,呼叫中,三点动画

<span class="dotting"></span>

css 样式控制

.dotting{
        display: inline-block; min-width: 2px; min-height: 2px;
        Box-shadow: 2px 0 currentColor,6px 0 currentColor,10px 0 currentColor; /* for IE9+,...,3个点 */
        animation: dot 4s infinite step-start both; /* for IE10+,... */
    }
    .dotting:before { content: ‘...‘; } /* for IE8. 若无需兼容IE8,此行以及下一行删除*/
    .dotting::before { content: ‘‘; } /* for IE9+ 覆盖 IE8 */
    :root .dotting { margin-right: 8px; } /* for IE9+,FF,CH,OP,SF 占据空间*/
    @keyframes dot {
        25% { Box-shadow: none; }                                  /* 0个点 */
        50% { Box-shadow: 2px 0 currentColor; }                    /* 1个点 */
        75% { Box-shadow: 2px 0 currentColor,6px 0 currentColor;  /* 2个点 */ }
    }

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效