Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created August 4, 2015 19:15
Show Gist options
  • Save ZakharDay/e9cfd11a32be2e48d653 to your computer and use it in GitHub Desktop.
Save ZakharDay/e9cfd11a32be2e48d653 to your computer and use it in GitHub Desktop.
$(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