jambonn / vue-concise-carousel

Vue Concise Carousel with True SSR Written for Jambon

Home Page:https://jambonn.github.io/vue-concise-carousel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

changing element style while changing slides

mukhrr opened this issue · comments

I was wondering how can one achieve the following feature by vue-concise-carousel:

let's say, my image is placed to left side in slider and between transitions I want it smoothly change its styles from

  transform: translateX(0);
  transform: scale(0);

to

  transform: translateX(10px);
  transform: scale(1.2);

I don't understand why you need to use transform scale?

I don't understand why you need to use transform scale?

I just want image to zoom out while changing.
I mean something like the following:

bandicam.2023-09-20.14-57-37-358.mp4

P.s: I implemented it by custom animation in my code source itself. However, it's worth adding such feature to this library.

Thanks for reporting! Would you like to send a Pull Request to address this issue?

I looked through and think this should be customized every time. I mean this is more related to element inside Slide component. Applying animation to Slide doesn't make sense.