Fix CSS hover on iPhone/iPad/iPod

前端 未结 16 615
星月不相逢
星月不相逢 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条回答
  •  Happy的楠姐
    2020-12-02 15:00

    Here is a basic, successful use of javascript hover on ios that I made:

    Note: I used jQuery, which is hopefully ok for you.

    JavaScript:

    $(document).ready(function(){
      // Sorry about bad spacing. Also...this is jquery if you didn't notice allready.
      $(".mm").hover(function(){
        //On Hover - Works on ios
        $("p").hide();
      }, function(){
        //Hover Off - Hover off doesn't seem to work on iOS
        $("p").show();
     })
    });
    

    CSS:

    .mm { color:#000; padding:15px; }
    

    HTML:

    hello world

    this will disappear on hover of hello world

提交回复
热议问题