博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
加载中,呼叫中,三点动画
阅读量:5319 次
发布时间:2019-06-14

本文共 782 字,大约阅读时间需要 2 分钟。

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个点 */ }    }

  

转载于:https://www.cnblogs.com/hibiscus-ben/p/10347735.html

你可能感兴趣的文章
poj2187 Beauty Contest
查看>>
cf 472G Design Tutorial: Increase the Constraints 分块+压位/FFT
查看>>
iOS开发之使用XMPPFramework实现即时通信(一)
查看>>
CentOS 6.5(x86_32)下安装Oracle 10g R2
查看>>
C语言学习总结(三) 复杂类型
查看>>
数据类型转换
查看>>
HNOI2018
查看>>
Android中检测网络连接状况的方法
查看>>
【理财】关于理财的网站
查看>>
Ubunt中文乱码
查看>>
《当幸福来敲门》读后
查看>>
python3基础知识自学笔记3-集合字典元组
查看>>
session的属性/方法/事件
查看>>
【转】系统无法进入睡眠模式解决办法
查看>>
思维导图 第六章 项目进度管理
查看>>
[Tex学习笔记]尝试数学公式
查看>>
省市县,循环组装,整合大数组
查看>>
C语言中返回字符串函数的四种实现方法
查看>>
Jmeter学习及使用(一)安装
查看>>
H5 调用手机摄像机、相册功能
查看>>