XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <progress>o(︶︿︶)o</progress>
是個(gè)很帶感的進(jìn)度條吧。有人奇怪:“唉~怎么我看到的是個(gè)字符表情捏?” 恩…我只能對(duì)你說:“鄙視你,丫的都舍不得用靠譜點(diǎn)的瀏覽器嗎?!”
這個(gè)默認(rèn)的效果,不同瀏覽器下的效果不盡相同,如下截圖們(window 7下):
(3)position是只讀屬性,顧名思意,當(dāng)前進(jìn)度的位置,就是value / max的值。如果進(jìn)度條不確定,則值為-1.
(4)labels也是只讀屬性,得到的是指向該progress元素的label元素們。例如document.querySelector("progress").labels,返回的就是HTMLCollection, 下為我的某測(cè)試截圖(截自O(shè)pera瀏覽器下,目前FireFox18.0.2以及IE10貌似都不支持)。
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <progress max="100" value="20"><ie style="width:20%;"></ie></progress>
CSS Code復(fù)制內(nèi)容到剪貼板
- progress {
- display: inline-block;
- width: 160px;
- height: 20px;
- border: 1px solid #0064B4;
- background-color:#e6e6e6;
- color: #0064B4;
- }
-
- progress ie {
- display:block;
- height: 100%;
- background: #0064B4;
- }
- progress::-moz-progress-bar { background: #0064B4; }
- progress::-webkit-progress-bar { background: #e6e6e6; }
- progress::-webkit-progress-value { background: #0064B4; }