IPhone 6 Parallax Scrolling Effect Full width slider background-position issue

IPhone 6 Design Issue Code:

Note: background-position:fixed not support

div {   
    background-image: url(images/welcome.jpg);
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    height: 100vh;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}

 

IPhone 6 Design Code:

Note: background-position:scroll support

div {   
    background-image: url(images/welcome.jpg);
    background-attachment: scroll;
    background-position: top center;
    background-size: cover;
    height: 100vh;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}

Leave a Reply

Your email address will not be published. Required fields are marked *