Created
November 26, 2015 17:08
-
-
Save ZakharDay/daf43aa42a83f513b6dd 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
| $(function() { | |
| $('#project1').on('click', function() { | |
| $('#projectsWrapper').css('margin-left', '0'); | |
| $('#circlesWrapper li').removeClass('current'); | |
| $(this).addClass('current'); | |
| }); | |
| $('#project2').on('click', function() { | |
| $('#projectsWrapper').css('margin-left', '-100vw'); | |
| $('#circlesWrapper li').removeClass('current'); | |
| $(this).addClass('current'); | |
| }); | |
| $('#project3').on('click', function() { | |
| $('#projectsWrapper').css('margin-left', '-200vw'); | |
| $('#circlesWrapper li').removeClass('current'); | |
| $(this).addClass('current'); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment