fix(Swipe): should stop autoplay when page is hidden

This commit is contained in:
chenjiahan 2021-01-12 19:47:41 +08:00
parent 215b55536c
commit 1c428f240c

View File

@ -400,7 +400,7 @@ export default createComponent({
watch([windowSize.width, windowSize.height], resize);
watch(usePageVisibility(), (visible) => {
if (visible) {
if (visible === 'visible') {
autoplay();
} else {
stopAutoplay();