5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-06 20:19:30 +08:00
wails/website/i18n/ja/docusaurus-plugin-content-docs/current/guides/overscroll.mdx
github-actions[bot] 4cd873fecb
docs: sync documents (#2443)
Co-authored-by: misitebao <misitebao@users.noreply.github.com>
2023-03-11 17:57:56 +11:00

11 lines
436 B
Plaintext

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