box-shadow理論上能夠生成任意的圖形效果,固然也就能夠實現點點點的loading效果了。css
html代碼,首先須要寫以下html代碼以及class類名:html
訂單提交中<span class="dotting"></span>
css代碼css3
.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+, ... */ *zoom: expression(this.innerHTML = '...'); /* for IE7. 若無需兼容IE7, 此行刪除 */ } .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個點 */ } }
這裏用到了currentColor這個關鍵字,IE9+瀏覽器支持,其可讓CSS生成的圖形的顏色跟所處環境的color屬性值同樣,也就是跟文字顏色同樣。git
各瀏覽器實現的效果如圖所示:github
支持CSS3 animation
動畫的瀏覽器顯示的就是打點動畫效果;對於不支持的瀏覽器,IE7/IE8顯示的是真實的字符...
, IE9瀏覽器雖然也是CSS3生成,可是是靜態的,沒有動畫效果;此乃漸進兼容。web
雖然幾乎全部瀏覽器都有模有樣,可是,從效果上講,仍是有瑕疵的,IE10+以及FireFox瀏覽器下的點的邊緣有些虛(參見下截圖),雖然CSS代碼並無設置盒陰影模糊。這種羽化現象可讓IE以及FireFox在大數值盒陰影時候效果更接近photoshop的陰影效果;可是,在小尺寸陰影時候,並非咱們想要的。express
html代碼瀏覽器
訂單提交中<span class="dotting"></span>
css代碼wordpress
.dotting { display: inline-block; width: 10px; min-height: 2px; padding-right: 2px; border-left: 2px solid currentColor; border-right: 2px solid currentColor; background-color: currentColor; background-clip: content-box; box-sizing: border-box; animation: dot 4s infinite step-start both; *zoom: expression(this.innerHTML = '...'); /* IE7 */ } .dotting:before { content: '...'; } /* IE8 */ .dotting::before { content: ''; } :root .dotting { margin-left: 2px; padding-left: 2px; } /* IE9+ */ @keyframes dot { 25% { border-color: transparent; background-color: transparent; } /* 0個點 */ 50% { border-right-color: transparent; background-color: transparent; } /* 1個點 */ 75% { border-right-color: transparent; } /* 2個點 */ }
說明:動畫
box-shadow
方法一致,都是內容生成,若是無需兼容IE7/IE8, 能夠按照第一個例子CSS代碼註釋說明刪除一些CSS;currentColor
關鍵字可讓圖形字符化,必不可少;background-clip
屬性,可讓IE9+瀏覽器下左右padding
沒有背景色,因而造成了等分打點效果。box-sizing
是讓現代瀏覽器和IE7/IE8佔據寬度徹底同樣的功臣:IE7/IE8實際寬度是width+padding-right
爲12
像素,其餘現代瀏覽器爲width+margin-left
也是12
像素;-webkit-animation
以及@-webkit-keyframes
私有前綴,實際目前仍是須要的;