Created
April 13, 2018 18:28
-
-
Save florida/582ece1718f2beca5355e494a2c5a68f to your computer and use it in GitHub Desktop.
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-container { | |
position: relative; | |
overflow: hidden; | |
} | |
.placeholder { | |
position: relative; | |
width: 100%; | |
filter: blur(10px); | |
transform: scale(1); | |
} | |
.picture { | |
position: absolute; | |
top: 0; | |
left: 0; | |
opacity: 0; | |
width: 100%; | |
height: 100%; | |
transition: opacity 1s linear; | |
} | |
.picture.loaded { | |
opacity: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment