0
我有以下HTML。請注意,第二部分有一個視圖幻燈片,它們在桌面上水平顯示。如何在移動設備上垂直顯示幻燈片
<section class="section" data-anchor="firstPage">
<h1>Section 1 - intro</h1>
</section>
<section class="section periods" data-anchor="secondPage">
<div class="slide" data-label="secondPage">
<h1>Section 2 - Intro</h1>
</div>
<div class="slide" data-label="1770"><h1>1770</h1></div>
<div class="slide" data-label="1870"><h1>1870</h1></div>
<div class="slide" data-label="1970"><h1>1970</h1></div>
</section>
在移動設備上(寬度小於767px),我想垂直顯示幻燈片而不滾動。我怎樣才能做到這一點?我可以通過配置fullPage參數來做到這一點嗎?
感謝您的幫助!