blob: a8326142597896403adb6649d8bd7f49ced287d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
---
title: '::-moz-range-progress'
slug: 'Web/CSS/::-moz-range-progress'
tags:
- CSS
- 'CSS:Mozilla扩展'
- 伪元素
- 选择器
- 非标准化
translation_of: 'Web/CSS/::-moz-range-progress'
---
<div>{{CSSRef}}{{Non-standard_header}}</div>
<p>The <strong><code>::-moz-range-progress</code></strong> <a href="/en-US/docs/Web/CSS">CSS</a> <a href="/en-US/docs/Web/CSS/Pseudo-elements">伪元素</a> 是一个 <a href="/en-US/docs/Web/CSS/Mozilla_Extensions">Mozilla 扩展</a>。它代表了指示器在其中滑动的轨道的下部(即凹槽)是一个 <code>type="range"</code> 类型的 {{HTMLElement("input")}} 。此部分对应的值低于揪揪当前选择的值(即虚拟旋钮)。</p>
<div class="note">
<p><strong>注意:</strong> 在 <code><input type="range"></code>上应用<code>::-moz-range-progress</code> 不会匹配任何元素,也不会有任何效果。</p>
</div>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate">{{csssyntax}}</pre>
<h2 id="示例">示例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><input type="range" min="0" max="100" step="5" value="50"/>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css notranslate">input[type=range]::-moz-range-progress {
background-color: green;
height: 1em;
}
</pre>
<h3 id="结果">结果</h3>
<p>{{EmbedLiveSample("Example", 300, 50)}}</p>
<p>使用了这个样式的进度条可能会看起来这样:</p>
<p><img alt="" src="https://mdn.mozillademos.org/files/12041/Screen%20Shot%202015-12-04%20at%2020.14.48.png"></p>
<h2 id="规范">规范</h2>
<p>无内容</p>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div class="hidden">此页面中的兼容性表格是根据结构化数据生成的。 如果您想贡献数据,请查看<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>并向我们发送合并请求。</div>
<p>{{Compat("css.selectors.-moz-range-progress")}}</p>
<h2 id="相关阅读">相关阅读</h2>
<ul>
<li>Gecko用于设置范围输入的其他部分样式的伪元素:
<ul>
<li>{{cssxref("::-moz-range-thumb")}} 代表在凹槽中滑动的指示器</li>
<li>{{cssxref("::-moz-range-track")}} 代表有揪揪滑动的凹槽</li>
</ul>
</li>
<li>其他浏览器使用的类似伪元素:
<ul>
<li>{{cssxref("::-ms-fill-upper")}}, Internet Explorer 和 Edge 支持的伪元素</li>
</ul>
</li>
<li><a href="https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/">CSS-Tricks:使用CSS设置跨浏览器兼容范围输入的样式</a></li>
<li><a href="http://www.quirksmode.org/blog/archives/2015/11/styling_and_scr.html">QuirksMode:样式和脚本滑块</a></li>
</ul>
|