5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-08 13:51:57 +08:00
wails/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.8.1/guides/overscroll.mdx
2024-04-11 21:19:59 +10:00

11 lines
436 B
Plaintext

# オーバースクロール
[オーバースクロール](https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior)は、ページコンテンツの境界を越えてスクロールした際に発生する"バウンス効果"です。 この効果はモバイルアプリでよく見かけます。 CSSを使用することでこの効果を無効化できます:
```css
html {
height: 100%;
overflow: hidden;
}
```