Skip to content

Instantly share code, notes, and snippets.

@rattlion
Created March 9, 2016 23:56
Show Gist options
  • Save rattlion/6e6f47173810e2c0e865 to your computer and use it in GitHub Desktop.
Save rattlion/6e6f47173810e2c0e865 to your computer and use it in GitHub Desktop.
translate(el, pageX, duration) {
var translation = `translateX(${pageX}%)`;
var transition = `all ${duration}ms`;
el.style.transition = transition;
el.style.transform = translation;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment