Skip to content

Commit

Permalink
docs: add explanation for mouse button event modifiers (#2421)
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-es authored Nov 22, 2024
1 parent 5d6a5c2 commit 9e7ba45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/guide/essentials/event-handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,3 +357,5 @@ Mac キーボードでは、メタキーはコマンドキー(⌘)が使わ
- `.middle`

これらの修飾子は特定のマウスボタンが発火したイベントを制御するハンドラーを制限します。

ただし、`.left`、`.right`、および `.middle` 修飾子名は、一般的な右利き用マウスのレイアウトに基づいていることに注意してください。しかし、実際にはそれぞれ「メイン」、「セカンダリ」、および「補助」のポインティングデバイスのイベントトリガーを表しており、実際の物理ボタンを表しているわけではありません。そのため、左利き用マウスのレイアウトでは、「メイン」ボタンが物理的には右ボタンであっても、`.left` 修飾子ハンドラがトリガーされる可能性があります。あるいはトラックパッドでは、1 本指タップで `.left` ハンドラーが、2 本指タップで `.right` ハンドラーが、3 本指タップで `.middle` ハンドラがトリガーされるかもしれません。同様に、「マウス」イベントを生成する他のデバイスやイベントソースでは、「左」や「右」とはまったく関係のないトリガーモードが存在するかもしれません。

0 comments on commit 9e7ba45

Please sign in to comment.