admin管理员组文章数量:1346324
I'm trying to figure out how can i pause autoplay on swiper when i hover but i cannot find it anywhere
<Swiper
spaceBetween={0}
navigation={{
prevEl: navigationPrevRef.current,
nextEl: navigationNextRef.current,
}}
autoplay={{
delay: 3000,
pauseOnMouseEnter: true,
}}
>
I'm trying to figure out how can i pause autoplay on swiper when i hover but i cannot find it anywhere
<Swiper
spaceBetween={0}
navigation={{
prevEl: navigationPrevRef.current,
nextEl: navigationNextRef.current,
}}
autoplay={{
delay: 3000,
pauseOnMouseEnter: true,
}}
>
Share
Improve this question
asked Jan 28, 2022 at 18:35
Burhan AliBurhan Ali
1291 silver badge8 bronze badges
2 Answers
Reset to default 6In this case, all you should need is the pauseOnMouseEnter
attribute set to true
, like you have. The issue seems to be because you don't have the autoplay module connected.
You should have imported these:
import { Autoplay, Navigation } from 'swiper'
import 'swiper/css'
import 'swiper/css/navigation'
Now that Autoplay
has been imported, we need connect it to the individual Swiper:
<Swiper
// spaceBetween can be removed if you have it set to 0
// spaceBetween={0}
navigation={{
prevEl: navigationPrevRef.current,
nextEl: navigationNextRef.current,
}}
autoplay={{
disableOnInteraction: false, // Optional, but remended
delay: 3000
pauseOnMouseEnter: true,
}}
modules={[ Autoplay, Navigation ]}
>
I hope that helps. Swiper can be a headache. Their documentation is very in depth.
So I found a work around hope it helps those who are still facing this issue. Just give a ref to your swpier use onMouseEnter and onMouseLeave on your parent div
import {useRef} from "react";
const swiperRefLocal = useRef()
const handleMouseEnter = () => {
swiperRefLocal?.current?.swiper?.autoplay?.stop()
};
const handleMouseLeave = () => {
swiperRefLocal?.current?.swiper?.autoplay?.start()
};
<div onMouseEnter={handleMouseEnter} onMouseLeave={handleMouseLeave}>
<Swiper
spaceBetween={0}
ref={swiperRefLocal}
navigation={{
prevEl: navigationPrevRef.current,
nextEl: navigationNextRef.current,
}}
autoplay={{
delay: 3000,
}}
>
</div>
本文标签: javascriptHow to pause autoplay in react swiper on hoverStack Overflow
版权声明:本文标题:javascript - How to pause autoplay in react swiper on hover? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743826461a2545730.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论