Created
January 2, 2011 18:07
-
-
Save thebigbad/762695 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <a id="last" href="#">last</a> | |
| <img id="mug" count="4" src="mug4.png" /> | |
| <a id="next" href="#">next</a> | |
| ... | |
| $('#last').click(function () { | |
| var mug = $('#mug'); | |
| var count = mug.attr('count'); | |
| count = (count - 1) % 48; | |
| mug.attr('count', count).src('mug' + count + '.png'); | |
| }); | |
| $('#next').click(function () { | |
| var mug = $('#mug'); | |
| var count = mug.attr('count'); | |
| count = (count + 1) % 48; | |
| mug.attr('count', count).src('mug' + count + '.png'); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment