Closed AeonFr closed 4 years ago
This adds support for smooth navigation between slides using anchor
Example: use <a href="#slide-id"> to go to scroll with id slide-id
<a href="#slide-id">
slide-id
// Index.vue <VueScrollSnap :fullscreen="true"> <section class="item"> <a href="#slide-2">Go to slide 2</a> </section> <section class="item"> <a name="slide-2" /> Section 2 </section> </VueScrollSnap>
This adds support for smooth navigation between slides using anchor
Example: use
<a href="#slide-id">
to go to scroll with idslide-id