vueuse / motion

🤹 Vue Composables putting your components in motion
https://motion.vueuse.org
MIT License
2.33k stars 81 forks source link

Shaking preset #116

Open pooyaEst opened 1 year ago

pooyaEst commented 1 year ago

Thx for this great library. Suggestion: a shaking preset which shakes the element left and right or top and down few times preferably with ability to indicate number of shakes would be nice.

0fatihyildiz commented 1 year ago

@pooyaEst

{
  initial: { x: 0 },
  enter: {
    x: [0, -10, 0] as any,
    transition: {
      repeat: 1,
      repeatType: 'mirror',
      duration: 400,
    },
  }, // issue: https://github.com/vueuse/motion/issues/137
}

like this ?

pooyaEst commented 1 year ago

Exactly