Parallax effect

Anonymous
html
07/06/2022 3:01 AM
324 B
25
Indexable
/*START - 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 - Parallax effect*/
Editor is loading...