色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

如何在屏幕上創建兩個位置固定的按鈕來滾動頁面的高度?[已關閉]

夏志豪1年前8瀏覽0評論

想改善這個問題?通過編輯這篇文章,更新問題,使其只關注一個問題。

嘿,你可以這樣試試

<button class="sticky top-0" on:click={scrollUp}>Scroll Up</button>

<!-- Your divs here -->

<button class="sticky bottom-0" on:click={scrollDown}>Scroll Down</button>

嘗試運行以下JS

<script>
  let scrollIndex = 0; // Initial scroll index

  function scrollUp() {
    if (scrollIndex > 0) {
      scrollIndex--;
      scrollToDiv();
    }
  }

  function scrollDown() {
    if (scrollIndex < 4) { // Adjust the value based on the number of divs
      scrollIndex++;
      scrollToDiv();
    }
  }

  function scrollToDiv() {
    const div = document.getElementById(`div${scrollIndex}`);
    div.scrollIntoView({ behavior: 'smooth' });
  }
</script>

我相信它會對你有所幫助