Fix CSS hover on iPhone/iPad/iPod

前端 未结 16 602
星月不相逢
星月不相逢 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:01

    I successfully used

    (function(l){var i,s={touchend:function(){}};for(i in s)l.addEventListener(i,s)})(document);
    

    which was documented on http://fofwebdesign.co.uk/template/_testing/ios-sticky-hover-fix.htm

    so a variation of Andrew M answer.

提交回复
热议问题