我正在尝试创建一个'滑块'用户可以水平滚动以导航到某些“滑块”项目。不过,我试图用纯粹的CSS来创建它;我似乎无法让它正常工作。
好的,让我解释一下这些照片。
“窗口”中的所有内容是可见的。这也意味着无序列表的溢出。我想要的是让用户能够在容器内水平滚动以移动无序列表。然而;我无法在'容器上使用overflow: hidden
或overflow: scroll
。因为它会隐藏所有溢出的内容,这是我不想要的。
我如何实现这一目标,或者甚至可以用纯CSS实现?
答案 0 :(得分:0)
尝试此操作(调整特定值/单位以适应):
html, body {
margin: 0;
padding: 0;
background: #12969D;
}
.container {
height: 90vh;
width: 90vw;
padding: 40px 0;
box-sizing: border-box;
border: 1px solid black;
background: #6B00BE;
margin: 5vh auto;
}
ul {
height: 100%;
width: calc(100% + 75px);
padding: 0;
background: #FFBD37;
list-style-type: none;
box-sizing: border-box;
overflow-x: scroll;
overflow-y: hidden;
white-space:nowrap;
}
li {
padding: 10px;
display: inline-block;
background: #FFD787;
height: 100%;
width: 50vw;
border: 1px solid black;
}

<div class="container">
<ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
</div>
&#13;
答案 1 :(得分:0)
请尝试这个:
<强> HTML 强>
<div id="project-slider">
<div class="container">
<ul class="items-holder">
<li class="item" style="background: blue;"></li>
<li class="item" style="background: red;"></li>
<li class="item" style="background: green;"></li>
</div>
</div>
</div>
<div>
<p>
Just to show that currently the window is scrolling instead of the container.
</p>
</div>
<强> CSS 强>
html, body {
margin: 0;
padding: 0;
background: #12969D;
}
.container {
height: 90vh;
width: 90vw;
padding: 40px 0;
box-sizing: border-box;
border: 1px solid black;
background: #6B00BE;
margin: 5vh auto;
}
ul {
height: 100%;
width: calc(100% + 75px);
padding: 0;
background: #FFBD37;
list-style-type: none;
box-sizing: border-box;
overflow-x: scroll;
overflow-y: hidden;
white-space:nowrap;
}
li {
padding: 10px;
display: inline-block;
background: #FFD787;
height: 100%;
width: 50vw;
border: 1px solid black;
}
答案 2 :(得分:0)
我们的想法是在固定元素上设置背景,并将列表放在其上面。
<强> Jsfiddle Example 强>
body {
background: teal;
margin: 0;
}
.background {
background: purple;
width: 80vw;
height: 80vh;
position: fixed;
left: 10vw;
top: 10vh;
}
.scrollable {
list-style-type: none;
position: relative;
display: flex;
padding: 0;
margin: 20vh 0 0 10vw;
height: 60vh;
}
.scrollable li {
padding: 10px;
background: orange;
height: 100%;
flex: 0 0 50vw;
border: 1px solid darkorange;
box-sizing: border-box;
}
&#13;
<div class="background"></div>
<ul class="scrollable">
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
&#13;
答案 3 :(得分:0)
我开始使用@Karl提到的SwiperJs(演示:https://swiper-demo-13-centered-1j4bnx.stackblitz.io/),但是之后我开始尝试不使用它。有很多技巧,很多技巧可以有所不同并且可以改进。 但是,要正确对齐滚动条,您必须使用自定义滚动条。主要思想是在.scroll-container
上使用负边距,使用CSS变量计算元素之间的间距。
:root {
--WINDOW-X-SPACE: 20px;
--CONTAINER-X-SPACE: 30px;
}
* {
box-sizing: border-box;
}
html, body {
height: 100vh;
}
body {
background: teal;
margin: 0;
padding: 20px var(--WINDOW-X-SPACE);
overflow-x: hidden;
}
main {
padding: 10px var(--CONTAINER-X-SPACE);
background: purple;
}
.scroll-container {
height: 200px;
margin: 0 calc(-1 * calc(var(--WINDOW-X-SPACE) + var(--CONTAINER-X-SPACE)));
padding: 0 var(--WINDOW-X-SPACE);
display: flex;
overflow: auto;
}
.scroll-container::-webkit-scrollbar {
all: unset;
}
.scroll-container::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
margin: 0 var(--WINDOW-X-SPACE);
}
.scroll-container::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
background-color: white;
}
.list-wrapper {
background: orange;
width: fit-content;
height: 100%;
display: flex;
margin: 0;
padding: 0;
padding-top: 40px;
position: relative;
}
.list-wrapper:before {
content: "Unordened list";
display: block;
position: absolute;
left: 15px;
top: 12px;
}
.list-item {
text-align: center;
font-size: 18px;
background: rgba(255, 255, 255, .5);
border: solid 1px orange;
width: 100px;
flex-shrink: 0;
height: 100%;
/* Center slide text vertically */
display: flex;
justify-content: center;
align-items: center;
}
.fix-offset {
width: var(--WINDOW-X-SPACE);
flex-shrink: 0;
}
<h4>Window</h4>
<main>
<h4>Container</h4>
<div class="scroll-container">
<ul class="list-wrapper">
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
<div class="list-item">List item</div>
</ul>
<span class="fix-offset"></span>
</div>
</main>