Skip to content

Instantly share code, notes, and snippets.

@ajmeyghani
Created August 31, 2018 11:38
Show Gist options
  • Save ajmeyghani/d7dda411f464865b6c936cfdb848acfa to your computer and use it in GitHub Desktop.
Save ajmeyghani/d7dda411f464865b6c936cfdb848acfa to your computer and use it in GitHub Desktop.
const xMax = 16;
const shake = anime({
targets: '#js-login-form',
easing: 'easeInOutSine',
duration: 550,
translateX: [
{
value: xMax * -1,
},
{
value: xMax,
},
{
value: xMax/-2,
},
{
value: xMax/2,
},
{
value: 0,
}
],
autoplay: false,
});
const send = () => {
shake.restart();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment