progress,html5,css
web前端-html教程
HTML5中新增了progress标签,用来表示进度条。背单词app源码,ubuntu代替苹果,java加tomcat8,南昌 爬虫店,php获取当前页面内容,品牌seo系统招商项目网络平台lzw
显示效果如下:
北斗app源码,word和vscode,ubuntu ipkg,tomcat软负载,sqlite3 小数计算,wordpress页面排版插件,写前端的所有插件和框架,常见的爬虫工具是哪些,php成绩查询,seo外链招聘,webmanage网站管理系统,网页代码特效下载,织梦竞价单页模板lzw
单品淘宝客源码,ubuntu改源操作,tomcat可以干什么,python 调用爬虫,php几天能学会,黔江区服务型seo推广哪家好lzw
其中CSS样式代码如下:progress{ width: 168px; height: 5px; }progress::-webkit-progress-bar{ background-color:#d7d7d7;}progress::-webkit-progress-value{ background-color:orange;}
解释下,在Chrome浏览器中
progress是以如下结构渲染的
progress
↓
::-webkit-progress-bar 全部进度
↓
::-webkit-progress-value 已完成进度
通过这两个伪元素为其添加样式。
但在别的浏览器中又有所不同,如IE10,这两个伪元素不起作用,直接用color样式可以修改已完成进度的颜色,而全部进度为background
FireFox中progress-bar为已完成进度,background为全部进度,而Opera中对这个样式只能为浏览器默认样式。
因此兼容性写法可以考虑如下
progress{ color:orange; /*兼容IE10的已完成进度背景*/ border:none; background:#d7d7d7;/*这个属性也可当作Chrome的已完成进度背景,只不过被下面的::progress-bar覆盖了*/ }progress::-webkit-progress-bar{ background:#d7d7d7;}progress::-webkit-progress-value,progress::-moz-progress-bar{ background:orange;}