Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ホバー スタイルを有効にするために、要素にタッチ イベントを追加する必要があるのはなぜですか? これは正常ですか?確かに少し不安定な気がする
これは、:hover を機能させるために追加する必要があるものです。:hover スタイルが設定されていない場合は、coffeescript に申し訳ありません
@button.$el.on('touchstart', ()-> console.log("touch started") )
わかりましたので、Roddy of the Frozen Peas がリンクしたものを調べたところ、要素に 'ontouchstart=""' を追加してホバー スタイルを有効にできることがわかりました。
しかし、私が気付いたのは、それをスーパー親に追加するだけで十分であり、すべての子要素にバブルダウンするということでした。