Skip to content

Instantly share code, notes, and snippets.

@RitaDias
Created January 16, 2017 14:36
Show Gist options
  • Save RitaDias/82c16cc7ea8b034875a62c7758a564eb to your computer and use it in GitHub Desktop.
Save RitaDias/82c16cc7ea8b034875a62c7758a564eb to your computer and use it in GitHub Desktop.
function updateUi() {
if (isMoving) {
var element = document.querySelector(".app-menu-container");
element.style.transform = "translateX(" + moveX + "px)";
element.style.webkitTransform = "translateX(" + moveX + "px)";
requestAnimationFrame(updateUi);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment