From f227cd3669ae19c88d9be233603f5de875f5e42f Mon Sep 17 00:00:00 2001
From: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Date: Wed, 30 Dec 2020 13:15:34 +0100
Subject: [PATCH] increasing sliding interval + pause sliding when pressing
arrows
---
index.html | 37 +++++++++++++++++++++++++++++++------
1 file changed, 31 insertions(+), 6 deletions(-)
diff --git a/index.html b/index.html
index 527d77d3..3b7fd5a5 100644
--- a/index.html
+++ b/index.html
@@ -447,11 +447,11 @@
What other people think
-
+
Previous
-
+
Next
@@ -498,7 +498,7 @@ Get NewPipe
-
+
@@ -552,11 +552,11 @@
Get NewPipe
-
+
Previous
-
+
Next
@@ -746,17 +746,21 @@
Support our developers
let userVoicesSwiper = new Swipe('#user-voices');
userVoicesSwiper.onLeft(function () {
$('#user-voices-carousel').carousel('next');
+ $('#user-voices-carousel').carousel('pause');
});
userVoicesSwiper.onRight(function () {
$('#user-voices-carousel').carousel('prev');
+ $('#user-voices-carousel').carousel('pause');
});
userVoicesSwiper.run();
let downloadFdroidSwiper = new Swipe('#download-info-carousel-container');
downloadFdroidSwiper.onLeft(function () {
$('#f-droid-carousel').carousel('next');
+ $('#f-droid-carousel').carousel('pause');
});
downloadFdroidSwiper.onRight(function () {
$('#f-droid-carousel').carousel('prev');
+ $('#f-droid-carousel').carousel('pause');
});
downloadFdroidSwiper.run();
}
@@ -770,7 +774,28 @@
Support our developers
});
});
-
+
+
+