Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

6
  • Hey, great example here, thanks for this! Got a question, this only slides in one direction, how do I allow for example two arrows one left and one right which slide the images to either right or left??? Commented Nov 16, 2017 at 13:48
  • @sicky I am currently stuck in a similar issue my Vue transitions are not triggering, however, my data seems to be reactive. It would be great if you could have a look at it and share your thoughts as to where am I going wrong stackoverflow.com/questions/51022673/… Commented Jun 25, 2018 at 13:21
  • 1
    I'm with @Benny How do we slide to the other side? Commented Jun 22, 2019 at 4:23
  • 2
    I started using vue-slick instead of fiddling around with vue-js animations to do a simple slide effect, it also has support for many other effects for sliding. kenwheeler.github.io/slick Commented Jun 24, 2019 at 13:05
  • @Benny I think you could use methods with body like this.currentImg = this.currentImg + 1 as left button and this.currentImg = this.currentImg - 1as next button Commented Jul 15, 2019 at 19:29