html 两个按钮范围滑块的CSS [已关闭]

2hh7jdfx  于 2022-12-21  发布在  其他
关注(0)|答案(1)|浏览(133)
    • 已关闭**。此问题需要超过focused。当前不接受答案。
    • 想要改进此问题吗?**更新此问题,使其仅关注editing this post的一个问题。

3天前关闭。
Improve this question
我想创建一个两个按钮的滑块,并应用样式相同。我已经创建了滑块,但无法样式滑块。
这是我的要求

以下是我所做的

我不能使用css样式滑块

.slider {
  display: flex;
  background-color: white;
  color: green;
}
<div class="slider">
  <input type="range">
  <input type="range">
</div>
v09wglhw

v09wglhw1#

试试这个。希望这对你有帮助。你可以调整任何你想要的。我添加了它的截图。

这是完整的代码。

.range_container {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 35% auto;
}

.sliders_control {
  position: relative;
  min-height: 50px;
}

.form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  color: #635a5a;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 100%;
  position: absolute;
  background-color: #f79847;
  pointer-events: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
  top: 5px;
}
<div class="range_container">
  <div class="sliders_control">
    <input id="fromSlider" type="range" value="10" min="0" max="100" />
    <input id="toSlider" type="range" value="40" min="0" max="100" />
  </div>
</div>

相关问题