Skip to content

Instantly share code, notes, and snippets.

@sachinKumarGautam
Created August 26, 2018 08:23
Show Gist options
  • Save sachinKumarGautam/3eafb15b4a07399575b82e91636a1f85 to your computer and use it in GitHub Desktop.
Save sachinKumarGautam/3eafb15b4a07399575b82e91636a1f85 to your computer and use it in GitHub Desktop.
This gist is for fade in animation of text when page loads
div {
opacity: 0;
animation: fadeIn 1s 0.5s forwards
}
@keyframes fadeIn {
100% {
opcaity: 1
}
}
{/* you can also use this to translate icons and images on load using scale(0, 0) to scale (1,1)
just like flipkart mweb app
*/}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment