Skip to content

Instantly share code, notes, and snippets.

@floster
Created January 9, 2018 08:40
Show Gist options
  • Save floster/5eb14010c8882587a962b3625f9f7532 to your computer and use it in GitHub Desktop.
Save floster/5eb14010c8882587a962b3625f9f7532 to your computer and use it in GitHub Desktop.
document.addEventListener("DOMContentLoaded", function() {
var svg = document.querySelector('.svg'),
pos = "left";
svg.addEventListener('click', function(){
switch(pos) {
case "left":
svg.classList.remove('left');
svg.classList.add('middle');
pos = "middle";
break;
case "middle":
svg.classList.remove('middle');
svg.classList.add('right');
pos = "right";
break;
case "right":
svg.classList.remove('right');
svg.classList.add('left');
pos = "left";
}
}, false);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment