Created
November 16, 2010 17:04
-
-
Save cjsaylor/702079 to your computer and use it in GitHub Desktop.
Scrolltab example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#content').scrolltab({ | |
hoverin: function() { | |
$(this).stop().animate({width: '200px'}, 500); | |
}, | |
hoverout: function() { | |
$(this).stop().animate({width: '50px'}, 500); | |
}, | |
classname: 'scrolltab-content', | |
title: 'Content' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment