ecommerce
Version:
Easily create Ecommerce sites powered by Hanzo.
25 lines (21 loc) • 380 B
CSS
.parallax {
background-attachment: fixed;
}
.parallax .foreground {
background-attachment: fixed;
background-position: center;
display: block;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
@media (max-width: 800px) {
.parallax {
background-attachment: initial;
}
.parallax .foreground {
background-attachment: initial;
}
}