Parallax effect

mail@pastecode.io avatar
unknown
html
2 years ago
241 B
5
Indexable
Never
/*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*/