Skip to content

Commit

Permalink
代替えテキストの適用漏れを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
ken7253 committed Feb 27, 2024
1 parent dbafba0 commit 2cc5ca6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions the-tooltip/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ ARIA APGを見るとインタラクションとして`ESC`キーでのキャン

### Selectivity

![](/img/bad-tooltip-listener.svg)
![ツールチップを表示する要素にだけイベントハンドラーを適用した場合のイベントの発生条件を表した図](/img/bad-tooltip-listener.svg)

トリガーとなる要素だけにイベントハンドラーを貼ると
ツールチップにポインタが移動した場合`PointerLeave`が発火して消えてしまう。
Expand All @@ -140,7 +140,7 @@ ARIA APGを見るとインタラクションとして`ESC`キーでのキャン

### Selectivity

![](/img/good-tooltip-listener.svg)
![ツールチップ全体をラップする要素にイベントハンドラーを適用した場合のイベント発生条件を表した図](/img/good-tooltip-listener.svg)

ツールチップとして認識する範囲を広げてWrapperを用意すると
ツールチップにポインタが移動しても`PointerLeave`が発火せず選択できる。
Expand Down

0 comments on commit 2cc5ca6

Please sign in to comment.