BG Image with parallax effect

 avatar
user_2884186074
plain_text
2 years ago
318 B
15
Indexable
/*START - BG Image with Parallax effect*/
&{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    @media only screen and (max-width: 768px) {
        background-attachment:unset;
    }
}
/*ENd - BG Image with Parallax effect*/
Editor is loading...