Skip to content

Instantly share code, notes, and snippets.

@miraglia
Created September 1, 2010 04:07
Show Gist options
  • Save miraglia/560209 to your computer and use it in GitHub Desktop.
Save miraglia/560209 to your computer and use it in GitHub Desktop.
//fade #demo off to full opacity, then remove it from the dom:
Y.one('#demo').transition({
easing: 'ease-out',
duration: 2, // seconds
opacity: 0
}, function() {
this.remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment