gpt4 book ai didi

html - 自定义水平滚动条 - 如何?

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

我尝试在 div 中创建水平的自定义滚动条。我会得到这样的效果: enter image description here

我的尝试: enter image description here

我用了::-webkit-scrollbar 等,但我不知道如何制作大按钮。

我的问题:

如何制作像1号图那样的滚动条?

最佳答案

我唯一能弄清楚的方法是伪造厚度差异。似乎不可能专门使 handle 比轨道更宽或更高。但是您可以使用颜色和透明度来伪造效果。

* {
box-sizing: border-box;
}
body {
background: black;
}
div {
margin: 40px auto;
height: 100px;
width: 400px;
overflow-x: scroll;
}
span{
width: 1000px;
display: block;
height: 40px;
}
div::-webkit-scrollbar {
height: 10px;
background: rgba(0,0,0,0);
}
div::-webkit-scrollbar-track {
-webkit-border-radius: 10px;
border-radius: 10px;
border: 3px solid rgba(0, 0, 0, 1);
background: rgba(255, 255, 255, 0.3);
}
div::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.7);
}
<div>
<span></span>
</div>

关于html - 自定义水平滚动条 - 如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42052610/

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