Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
FacebookやGmailに似たdivのマウスホバーにスクロールバーを表示する必要があります。そのための無料のJSライブラリはありますか?
div のオーバーフロー プロパティが非表示に設定されている場合は、ホバー時にスクロールするように設定できます。
div.onmouseover =function () { this.style.overflow = "scroll"; }
css のみを使用して行うこともできます。
#divId { overflow:hidden; height: 100px; } #divId:hover { overflow:scroll }