Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created November 26, 2015 17:08
Show Gist options
  • Select an option

  • Save ZakharDay/daf43aa42a83f513b6dd to your computer and use it in GitHub Desktop.

Select an option

Save ZakharDay/daf43aa42a83f513b6dd 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