J
J
JorikArbuzov2021-03-07 19:55:14
JavaScript
JorikArbuzov, 2021-03-07 19:55:14

How to use navigation in swiper vue?

Hello!
The goal is to make the top me become a horizontal scroll when adaptive and stop when needed. Those. the whole menu will be one big slide, only I need to stop it at a certain stage of the scroll.
Below will be sketches

<template>
  <div class="swiper-container">
      <div class="swiper-wrapper">   
          <div class="swiper-slide">Slide 1 Slide 1 Slide 1 Slide 1 Slide 1 Slide 1 Slide 1Slide 1</div>    
      </div>
  </div>
</template>

<script>
import Swiper, { Thumbs } from 'swiper'
import 'swiper/swiper-bundle.css'

Swiper.use([ Thumbs ])

export default {
   data() {
      return {
        thumbsSwiper: null,
      };
    },
    mounted() {
      new Swiper('.swiper-container', {
        loop: false,
        scrollbar: {
          el: '.swiper-scrollbar',
        },
      })
    }
}
</script>

<style scoped>

</style>

Thank you in advance!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Stefan, 2021-03-07
@MEDIOFF

The question is, if you have nuxt, why do you use the standard swiper? There is vue-awesome-swiper which is perfectly compatible with nuxt.
Regarding your question, well, firstly, separate menu items are separate slides, in the swiper config, simply set a breakpoint for initialization, or disable the initialization of the slider and manually initialize it at the desired resolution

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question