Viewing 1 replies (of 1 total)
  • Plugin Author madax

    (@dwawobieg)

    hmm first idea – You can use @media in css add for example id=”desktop” for div with parallax effect and second div with id=”mobile”.

    Example in css:

    #mobile{/*static background image */
    background: url(...);
    display:none;
    }
    
    #desktop{
    display:block;
    }
    
    @media (min-width:992px){
    #mobile{
    display:none;
    }
    #desktop{
    display:block;
    }
    } 
    
    @media (max-width:991px){
    #desktop{
    display:none;
    }
    #mobile{
    display:block;
    }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘disable parallax scrolling responsive design’ is closed to new replies.