英文:
How to detect click with native html/css for slider
问题
我正在尝试仅使用HTML/CSS创建滑块。我正在使用输入和标签。
这是我的CSS代码。当元素被选中时,我将我的div
向左移动。
.firstCat:checked ~ .carousel-wrapper div {
left: 360px;
transition: left 0.3s ease-in-out;
}
这是创建滑块的唯一方法吗?也许有更加优雅的解决方案。
英文:
I am trying to create slider only with html/css. I'm using inputs and labels.
This is my css code. I'm moving my div to left when element is checked.
.firstCat:checked ~ .carousel-wrapper div {
left: 360px;
transition: left 0.3s ease-in-out;
}
Is it the only way to create sider? Maybe you more elegant solution.
答案1
得分: 0
您可以使用。
英文:
<input type="range" min="1" max="100" value="50" class="slider">
You can use input type "range".
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论