Skip to content

Instantly share code, notes, and snippets.

@jonbrockett
Last active January 17, 2019 14:33
Show Gist options
  • Save jonbrockett/34629a74f96740882adac0fe73092817 to your computer and use it in GitHub Desktop.
Save jonbrockett/34629a74f96740882adac0fe73092817 to your computer and use it in GitHub Desktop.
Parallax (Foundation SCSS Class)
// Parallax
.parallax {
@include breakpoint(small) {
background-size: cover;
background-position: top center;
}
@include breakpoint(medium) {
background-attachment: fixed;
}
}
video.parallax {
@include breakpoint(medium) {
position: fixed !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment