Fix CSS hover on iPhone/iPad/iPod

前端 未结 16 632
星月不相逢
星月不相逢 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 14:58

    Where, I solved this problem by adding the visibility attribute to the CSS code, it works on my website

    Original code:

    #zo2-body-wrap .introText .images:before
    {
    background:rgba(136,136,136,0.7);
    width:100%;
    height:100%;
    content:"";
    position:absolute;
    top:0;
    opacity:0;
    transition:all 0.2s ease-in-out 0s;
    }

    Fixed iOS touch code:

    #zo2-body-wrap .introText .images:before
    {
    background:rgba(136,136,136,0.7);
    width:100%;
    height:100%;
    content:"";
    position:absolute;
    top:0;
    visibility:hidden;
    opacity:0;
    transition:all 0.2s ease-in-out 0s;
    }

提交回复
热议问题