Skip to content

Instantly share code, notes, and snippets.

@himynameisdave
Created April 10, 2015 01:12
Show Gist options
  • Save himynameisdave/c7a7ed14500d29e58149 to your computer and use it in GitHub Desktop.
Save himynameisdave/c7a7ed14500d29e58149 to your computer and use it in GitHub Desktop.
broken gradient animation
// For brevity, vendor prefixes have been removed.
// This does not work as expected; instead of a smooth transition
// what you get is a hard swap from one gradient to the next
.super-cool-background-that-SHOULD-animate-on-hover {
background: linear-gradient( #fff, #ccc );
transition: all 0.45s;
&:hover{
background: linear-gradient( #ccc, #fff );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment