<fieldset class="formSlider">
<legend class="applicationForm__text">Выберите количество серебра (млн)</legend>
<input
class="formSlider__range"
type="range"
min="1"
max="50"
step="1"
id="sliderRange"
list="ticks"
/>
<!-- for ticks in range input -->
<datalist id="ticks" class="formSlider__tickList"></datalist>
<input class="formSlider__input" type="number" id="totalQuantity" />
</fieldset>
$runnableTrack: 8px;
.formSlider {
display: flex;
flex-direction: column;
margin: 0 0 25px 0;
&__tickList {
position: relative;
display: flex;
justify-content: space-between;
height: auto;
bottom: 15px;
height: 20px;
overflow: hidden;
/* disable text selection */
user-select: none; /* Safari */
user-select: none; /* Firefox */
user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
/* disable click events */
pointer-events: none;
option {
width: 3px;
background-color: #25beb3;
background-color: black;
&:first-of-type,
&:last-of-type {
opacity: 0;
visibility: hidden;
}
}
}
legend {
padding: 0 0 45px 0;
}
&__range {
width: 100%;
appearance: none;
background: transparent;
cursor: pointer;
&:focus {
outline: none;
}
&::track {
background: transparent;
border-color: transparent;
color: transparent;
}
::ticks-before {
display: block;
color: black;
}
// /* circle */
&::slider-thumb {
appearance: none;
height: 20px;
width: 20px;
border-radius: 100%;
background-color: #25beb3;
cursor: pointer;
margin: -5px;
}
// /* circle firefox */
&::range-thumb {
appearance: none;
height: 20px;
width: 20px;
border-radius: 100%;
background-color: #25beb3;
cursor: pointer;
}
/* runnable track */
&::slider-runnable-track {
width: 100%;
height: $runnableTrack;
cursor: pointer;
background: #207d7e;
border-radius: 4px;
}
/* runnable track firefox*/
&::range-track {
width: 100%;
height: $runnableTrack;
cursor: pointer;
background: #207d7e;
border-radius: 4px;
}
}
&__input {
border: 2px solid #25beb3;
background: transparent;
height: 56px;
max-width: 235px;
width: 100%;
padding: 0 25px;
color: #ffffff;
font-family: "Gotham Pro";
font-size: 20px;
font-weight: 700;
margin: 25px 0 0 auto;
&::outer-spin-button,
&::inner-spin-button {
appearance: none;
}
}
}
View Compiled
const totalInput = document.getElementById("totalQuantity");
const rangeTickList = document.getElementById("ticks");
const rangeSlider = document.getElementById("sliderRange");
window.addEventListener("DOMContentLoaded", function () {
const maxTicks = rangeSlider.getAttribute("max");
for (let i = 0; i < maxTicks; i++) {
const option = document.createElement("option");
rangeTickList.appendChild(option);
}
console.log(rangeTickList.children.length);
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.