Reputation: 53
My problem is with SwiperJS navigation that can not be seen. In documentation is written:
navigation's nextEl is String with CSS selector or HTML element of the element that will work like "next" button after click on it but when I do
navigation={{
nextEl: <div>some text</div>
}}
It is not shown at all
import React from 'react';
import { Swiper, SwiperSlide } from 'swiper/react';
import SwiperCore, { Navigation } from 'swiper';
import 'swiper/swiper-bundle.min.css'
import classes from './HorizontalSwiper.module.css';
SwiperCore.use([Navigation]);
const HorizontalSwiper = ({title}) => {
return (
<section className={classes.hs}>
<header>
<div className={classes.hs__title}>{title}</div>
<div className={classes.hs__seeAll}>see all</div>
</header>
<Swiper
spaceBetween={10}
slidesPerView={2}
direction='horizontal'
navigation={{
nextEl: <div>next</div>,
prevEl: <div>prev</div>
}}
className={classes.swiper}>
{
[1,2,3,4,5].map(function showSwiperItem(el, i){
return (
<SwiperSlide key={`${el}_${i}`} className={classes.swiper__slide}>
{el}
</SwiperSlide>
)
})
}
</Swiper>
</section>
)
}
export default HorizontalSwiper;
Upvotes: 4
Views: 14342
Reputation: 7741
nextEl
/prevEl
:String with CSS selector or HTML element of the element that will work like "next/prev" button after click on it. https://swiperjs.com/swiper-api#navigation
Mistakes in your code:
JavaScript Strings variables are written inside double or single quotes.
Correct:
nextEl: '.swiper-button-next',
Wrong:
nextEl: .swiper-button-next,
CSSSelector
-or- HTMLElement
(Selectors)This is not appendChild behavior. Use class
-or- id
-or- data attribute
or html-element
selector.
Correct Examples:
2.1: Select by class:
navigation={
nextEl: `.some_class_selector`,
}
2.2: By id:
navigation={
nextEl: `#next_btn`,
}
2.3: By attribute:
navigation={
nextEl: `[data-next-btn]`,
}
2.4: By HTML element (Less usefull):
navigation={
nextEl: `hgroup`,
}
Your html:
<hgroup id="next-btn" class="some_class_selector" data-next-btn>next</hgroup>
navigation={{
prevEl: ".some_class_prev_selector",
nextEl: ".some_class_next_selector"
}}
Wrong (The code below will not add <div>next</div>
node to the DOM):
navigation={
nextEl: `<div>next</div>`, /* not appendChild*/
}
**No way to show react Demo because swiper react available only as NPM
Step 1: Add next/prev buttons nodes to the DOM.
Step 2: Select the next/prev nodes.
<!-- Initialize Swiper -->
const swiper = new Swiper('.swiper-container', {
loop: true,
navigation: {
nextEl: '.custom_next_btn',
prevEl: '.custom_prev_btn',
},
});
html,
body {
position: relative;
height: 100%;
}
body {
background: #eee;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #000;
margin: 0;
padding: 0;
}
.swiper-container {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
/* Center slide text vertically */
display: flex;
justify-content: center;
align-items: center;
}
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<button class="custom_prev_btn">Custom Prev</button>
<button class="custom_next_btn">Custom Next</button>
<!-- Swiper -->
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">Slide 1</div>
<div class="swiper-slide">Slide 2</div>
<div class="swiper-slide">Slide 3</div>
<div class="swiper-slide">Slide 4</div>
</div>
</div>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
React code example:
/* index.js */
import React from "react";
import "./style.css";
// import Swiper core and required modules
import SwiperCore, { Navigation, Pagination, Scrollbar, A11y } from "swiper";
import { Swiper, SwiperSlide } from "swiper/react";
// Import Swiper styles
import "swiper/swiper.scss";
import "swiper/components/navigation/navigation.scss";
import "swiper/components/pagination/pagination.scss";
import "swiper/components/scrollbar/scrollbar.scss";
// install Swiper modules
SwiperCore.use([Navigation, Pagination, Scrollbar, A11y]);
export default function App() {
return (
<div>
<button class="custom_next">Custom Next Btn</button>
<button class="custom_prev">Custom Next Btn</button>
<Swiper
spaceBetween={50}
slidesPerView={3}
navigation={{
nextEl: ".custom_next",
prevEl: ".custom_prev"
}}
>
<SwiperSlide>Slide 1</SwiperSlide>
<SwiperSlide>Slide 2</SwiperSlide>
<SwiperSlide>Slide 3</SwiperSlide>
<SwiperSlide>Slide 4</SwiperSlide>
</Swiper>
</div>
);
}
Upvotes: 4