Skip to content

Instantly share code, notes, and snippets.

@mbutler-cs
mbutler-cs / animation
Created May 15, 2013 16:17
css3 animation (transition)
/* the css here */
@include keyframes(fadeIn) {
from {
opacity: 0; }
to {
opacity: 1; }
}
@include keyframes(fadeOut) {