Last active
July 29, 2019 09:37
-
-
Save shopifypartners/4eccd4b5f3dbbf2a61e9f4b5d4368632 to your computer and use it in GitHub Desktop.
Lazyloading classes - https://www.shopify.com/partners/blog/lazy-loading
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.image { | |
display: block; | |
margin: 0 auto; | |
width: 100%; | |
} | |
.grid-view-item__image-wrapper .image { | |
position: absolute; | |
top: 0; | |
} | |
.image.lazyload { | |
opacity: 0; | |
} | |
.image-wrapper { | |
margin: 0 auto; | |
position: relative; | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment