5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-08 07:21:46 +08:00
wails/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.6.0/guides/overscroll.mdx
Lea Anthony 1644ee152e
v2.6.0
2023-09-06 19:45:08 +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;
}
```