hover event on touch device

前端 未结 3 1408
小鲜肉
小鲜肉 2021-01-26 00:06

I decrease opacity of

    when mouse over the
      tag area and then set full opacity for
    • which user is on that.
3条回答
  •  时光说笑
    2021-01-26 00:38

    Since :hover is of course not supported in touch only browsers, you can use the touchStart, touchMove, and touchEnd events (through javascript). These are used very well in the FastClick library.

    Also some CSS :hover events can be activated through a touch only browser if you hold your finger on the screen.

提交回复
热议问题