首頁 > web前端 > css教學 > 如何隱藏滾動條同時仍允許滑鼠和鍵盤滾動?

如何隱藏滾動條同時仍允許滑鼠和鍵盤滾動?

Susan Sarandon
發布: 2024-11-09 10:22:02
原創
718 人瀏覽過

How to Hide Scrollbars While Still Allowing Mouse and Keyboard Scrolling?

在保持滑鼠/鍵盤滾動的同時隱藏滾動條

此問題已被標記為重複,但原始線程沒有充分解決該問題隱藏滾動條同時仍允許使用滑鼠或鍵盤滾動的特定問題。

原始問題:

我可以隱藏滾動條,同時仍允許滾動滑鼠還是鍵盤?

CSS Overflow: Hidden 限制:

CSS 屬性Overflow: hide 可用來隱藏捲軸,但它也會停用

jQuery解決方案(原始):

原始線程提出了一個 jQuery 解決方案,可以在沒有滾動條的情況下動態測量文本區域的寬度並設置包裝器 div 的寬度因此。這會產生一個沒有可見滾動條的可滾動 div 的錯覺。

// get the width of the textarea minus scrollbar
var textareaWidth = document.getElementById("textarea").scrollWidth;

// width of our wrapper equals width of the inner part of the textarea
document.getElementById("wrapper").style.width = textareaWidth + "px";
登入後複製

JavaScript 解決方案(不使用jQuery):

或者,可以應用相同的原理,而無需jQuery:

document.getElementById("wrapper").style.overflow = "hidden";

// get the width of the textarea minus scrollbar
var textareaWidth = document.getElementById("textarea").scrollWidth;

// width of our wrapper equals width of the inner part of the textarea
document.getElementById("wrapper").style.width = textareaWidth + "px";
登入後複製

更新:

同樣的原理可以用於使用CSS 和JavaScript 建立沒有捲軸的可滾動div。

以上是如何隱藏滾動條同時仍允許滑鼠和鍵盤滾動?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板