答案 0 :(得分:2)
这个怎么样? (它使用水平overflow
,允许从一侧移动到另一侧)
.slide-container {
overflow: auto;
white-space: nowrap;
}

<div class="slide-container">
<img src="http://placehold.it/200" />
<img src="http://placehold.it/200" />
<img src="http://placehold.it/200" />
<img src="http://placehold.it/200" />
</div>
&#13;
答案 1 :(得分:1)
这不是一件特别的事情,只需使用这个css:
.swipe{
overflow:auto;
white-space:nowrap;
}
并在你的HTML中:
<div class=swipe>
<img src="">
<img src="">
<img src="">
.
.
.
</div>
在计算机中它有一个滚动条,但在移动设备中你可以滑动它