Created
November 3, 2009 01:31
-
-
Save kevinvaldek/224693 to your computer and use it in GitHub Desktop.
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
<div class="scrollcase" style="width: 3000px;"> | |
<div rel="1st pane title">...</div> | |
<div rel="2nd pane title">...</div> | |
<div rel="3rd pane title">...</div> | |
</div> |
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
window.addEvent('domready', function() { | |
$$('.scrollcase').each(function(container) { | |
new Scrollcase(container); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment