Skip to content

Instantly share code, notes, and snippets.

@brunoskonrad
Created June 1, 2015 01:59
Show Gist options
  • Save brunoskonrad/d17e4c0420abc211d9fb to your computer and use it in GitHub Desktop.
Save brunoskonrad/d17e4c0420abc211d9fb to your computer and use it in GitHub Desktop.
Sample fadeIn animation with css (i'll test this monday !HAHHAA)
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.class {
animation: fadeIn 1s linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment