We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://codesandbox.io/p/sandbox/swiper-prev-next-slides-forked-dp5xyt?file=%2Fsrc%2FApp.jsx%3A27%2C11
when we click on the specified pagination button, not loading the previous or next slides in time. (the similar issue are: #6768, #6472
The code is:
export default function App() { let data = [...new Array(9)].map((_, i) => i); return ( <> <Swiper slidesPerView={"auto"} loop={true} centeredSlides={true} spaceBetween={40} // loopedSlides={1} pagination={{ clickable: true, }} navigation={true} modules={[Pagination, Navigation]} className="mySwiper" > {data.map((i) => { return ( <SwiperSlide key={i}> <Slide id={i} /> </SwiperSlide> ); })} </Swiper> </> ); } function Slide({ id }) { return ( <div style={{ background: "#cff", width: 400, height: 300, // transform: "scale(0.75)", }} > Slide {id} </div> ); }
Previous/next slides appearing in time.
Previous/next slides not appearing in time.
^10.2.0 & V9
macOS Chrome 116.0.5845.140
The text was updated successfully, but these errors were encountered:
c496835
@nolimits4web I think [email protected] has the same error. you can see https://codesandbox.io/p/sandbox/v10-3-swiper-prev-next-slides-g4zqcq?file=%2Fsrc%2FApp.jsx%3A11%2C23
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Check that this is really a bug
Reproduction link
https://codesandbox.io/p/sandbox/swiper-prev-next-slides-forked-dp5xyt?file=%2Fsrc%2FApp.jsx%3A27%2C11
Bug description
when we click on the specified pagination button, not loading the previous or next slides in time.
(the similar issue are: #6768, #6472
The code is:
swiperV10.mov
Expected Behavior
Previous/next slides appearing in time.
Actual Behavior
Previous/next slides not appearing in time.
Swiper version
^10.2.0 & V9
Platform/Target and Browser Versions
macOS Chrome 116.0.5845.140
Validations
Would you like to open a PR for this bug?
The text was updated successfully, but these errors were encountered: