Skip to content

Instantly share code, notes, and snippets.

@florida
Created April 13, 2018 18:28
Show Gist options
  • Save florida/582ece1718f2beca5355e494a2c5a68f to your computer and use it in GitHub Desktop.
Save florida/582ece1718f2beca5355e494a2c5a68f to your computer and use it in GitHub Desktop.
.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