gpt4 book ai didi

javascript - 增加 jQuery Mobile slider handle 的可点击区域

转载 作者:太空宇宙 更新时间:2023-11-04 11:06:52 26 4
gpt4 key购买 nike

我想增加 jQuery 移动 slider 的 handle 可点击区域。截至目前, handle 的可点击区域很小。所以,我无法每次点击和更改 handle 的范围。我想让 handle 大小相同但增加可点击区域。我的自定义 CSS 如下。

.ui-slider-track .ui-btn.ui-slider-handle {
width: 12px;
height: 12px;
margin: -10px 0 0 -10px;
background-color:#0096E2;
padding: 5px;
border-color: #0096E2;
}

最佳答案

div {
position: relative;
width: 100px;
height: 100px;
border: 1px dashed #eee;
cursor: pointer;
transition: background-color 1.5s;
}

div::before {
content: '';
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 20px;
height: 20px;
background-color: rgb(188,20,20);
border-radius: 2px;
}

div:hover {
background-color: #FFFFDF;
}
<div></div>

关于javascript - 增加 jQuery Mobile slider handle 的可点击区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33912689/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com