h5活动需要插入音频,但又需要自定义样式,于是自己写咯
html
XML/HTML Code复制内容到剪贴板
-
- <span class='cur'></span><input type="range" min=0 max=100 class='range' value=0><span class='max'></span>
css
CSS Code复制内容到剪贴板
-
- .range {
- width: 5.875rem;
- height: 0.15rem;
- background: #2386e4;
- border-radius: 0.25rem;
- -webkit-appearance: none !important;
- position: absolute;
- top: 3.55rem;
- left: 6rem;
- }
-
- .range::-webkit-slider-thumb {
- width: 0.5rem;
- height: 0.5rem;
- background: #fff;
- border: 1px solid #f18900;
- cursor: pointer;
- border-radius: 0.25rem;
- -webkit-appearance: none !important;
- }