Skip to content

Instantly share code, notes, and snippets.

@agragregra
Created September 15, 2015 04:39
Show Gist options
  • Save agragregra/e879f1955ffa1b101425 to your computer and use it in GitHub Desktop.
Save agragregra/e879f1955ffa1b101425 to your computer and use it in GitHub Desktop.
SVG Animate
var path = document.querySelector('path');
var length = path.getTotalLength();
// Clear any previous transition
path.style.transition = path.style.WebkitTransition =
'none';
// Set up the starting positions
path.style.strokeDasharray = length + ' ' + length;
path.style.strokeDashoffset = length;
// Trigger a layout so styles are calculated & the browser
// picks up the starting position before animating
path.getBoundingClientRect();
// Define our transition
path.style.transition = path.style.WebkitTransition =
'stroke-dashoffset 30s ease';
// Go!
path.style.strokeDashoffset = '0';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment