我想以jquery / javascript滑块形式实现一个时隙选择器。
有一些滑块库,如Ion Slider,jQRangeSlider等,但我不知道我会怎么做。它看起来不像是支持多个“死区”。
我希望用户能够在特定日期内选择时间段(从和到)。为了选择这一天,我实施了一个日期选择器,然后在日期中,我检索已占用的插槽,例如:
07h00 - Available
07h30 - Available
08h00 - Occupied
08h30 - Occupied
09h00 - Occupied
09h30 - Available
...
18h30 - Available
19h00 - Available
用户应该只能在可用部分中选择时区(蓝色)并在“可用”部分之间拖动开始滑块,并且结束选择器将随之移动。可能存在多个不可用区域(红色)。
这可能是已经存在的库吗?或者这是我自己的一个案例吗?
我考虑过使用一堆复选框然后检查开始和结束时隙之间的所有方框,并禁用已经占用的插槽,但我认为这样的滑块可以更方便用户使用,功能和视觉上。
答案 0 :(得分:0)
通过使用CSS将两个滑块叠加在一起,可以轻松地制作双滑块。您需要侦听这两个的onchange事件,并在设置为死区时将滑块重置为先前值或closet non dead region。
var deadZones = [[2,3], [6,7]];
function showVal(input) {
deadZones.forEach(([from, to]) => {
// reset to old value if in dead zone
if(from <= input.value && input.value <= to)
input.value = input.oldValue;
});
input.oldValue = input.value;
//console.log(input.id, input.value);
displayValues();
}
function displayValues() {
var a = $('#a').val();
var b = $('#b').val();
$('#slider-values').text(`Min: ${Math.min(a,b)} Max: ${Math.max(a,b)}`);
}
displayValues();
&#13;
html,body{
margin: 0; padding: 0;
}
#a, #b{
position: absolute;
top: 30px;
display: block;
z-index: 100;
}
#b {
top: 60px;
}
/* from: https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/ */
input[type=range] {
-webkit-appearance: none; /* Hides the slider so that custom slider can be made */
width: 90%; /* Specific width is required for Firefox. */
background: transparent; /* Otherwise white in Chrome */
margin-left: 5%;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid #000000;
height: 36px;
width: 16px;
border-radius: 3px;
background: #ffffff;
cursor: pointer;
automatic */
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
position: relative;
}
input[type=range]#a::-webkit-slider-thumb {
top: 100px;
}
input[type=range]#b::-webkit-slider-thumb {
top: 70px;
}
.slider-bg {
width: 100%;
margin: 0; padding: 0;
margin-left: 2.5%;
position: relative;
z-index: 1;
top: 135px;
}
.slider-bg div {
display: inline-block;
width: 9%;
margin: 0; padding: 0;
text-align: center;
border-top: 1px solid green;
padding-top: 20px;
}
.slider-bg div.disabled {
border-top: 1px solid red;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input id="a" type="range" min="1" max="10" value="1" oninput="showVal(this)" onchange="showVal(this)" />
<input id="b" type="range" min="1" max="10" value="9" oninput="showVal(this)" onchange="showVal(this)"/>
<hr />
<div class="slider-bg">
<div>1</div>
<div class="disabled">2</div>
<div class="disabled">3</div>
<div>4</div>
<div>5</div>
<div class="disabled">6</div>
<div class="disabled">7</div>
<div>8</div>
<div>9</div>
<div>10</div>
</div>
<div id="slider-values"></div>
&#13;
答案 1 :(得分:0)
我决定用从05h30
到19h30
的自定义插槽来实现ionRangeSlider。我在used
事件中与之比较的onChange
时隙的单独数组。
var slider = $("#timeslotSlider").ionRangeSlider({
type: "double",
grid: true,
from: 1,
from_value: "06h00",
to: 2,
to_value: "06h30",
values: timeslotvalues,
onChange: function (data) {
timeslotSetSelectedText(data);
}
});
var sliderdata = slider.data("ionRangeSlider");
var dt = sliderdata.result.from_value != null ? sliderdata.result : sliderdata.options;
timeslotSetSelectedText(dt);
timeslotSetSelectedText
函数将所选范围与used
插槽进行比较,然后显示一条消息"Available"
或"Overlaps Existing time-slot"
该功能用于Validate
所选插槽,然后再将其发送到服务器。