Fix CSS hover on iPhone/iPad/iPod

前端 未结 16 610
星月不相逢
星月不相逢 2020-12-02 14:53

I want to fix the hover effect on iOS ( change to touch event ) but I dont have any idea . Let me explain this . You have a text in your page :

16条回答
  •  南方客
    南方客 (楼主)
    2020-12-02 15:03

    Here is a very slight improvement to user1387483's answer using an immediate function:

    (function() {
      $("*").on( 'touchstart', function() {
        $(this).trigger('hover') ;
      } ).on('touchend', function() {
        $(this).trigger('hover') ;
      } ) ;
    })() ;
    

    Also, I agree with Boz that this appears to be the "neatest, most compliant solution".

提交回复
热议问题