Skip to Content

JavaScript File

URL: https://zaroom.ru/catalog/view/javascript/ex-reviews/swiper/js/swiper.jquery.js
HTTP Status: 200 OK
MIME Type: application/x-javascript
Last Modified: Wed, 30 Nov 2022 04:01:31 GMT
Download Time: Less than a second
Cookies: None
Size: 204 KB
HTTP Headers:  5 headers
Links In:  1 pages
Links Out:  0 links
Images:  0 images
CSS:  0 files
JavaScript:  0 files
OK Issues: No issues found

1/**

2 * Swiper 3.4.2

3 * Most modern mobile touch slider and framework with hardware accelerated transitions

4 *

5 * http://www.idangero.us/swiper/

6 *

7 * Copyright 2017, Vladimir Kharlampidi

8 * The iDangero.us

9 * http://www.idangero.us/

10 *

11 * Licensed under MIT

12 *

13 * Released on: March 10, 2017

14 */

15(function () {

16 'use strict';

17 var $;

18

19 /*===========================

20 Swiper

21 ===========================*/

22 var Swiper = function (container, params) {

23 if (!(this instanceof Swiper)) return new Swiper(container, params);

24

25

26 var defaults = {

27 direction: 'horizontal',

28 touchEventsTarget: 'container',

29 initialSlide: 0,

30 speed: 300,

31 // autoplay

32 autoplay: false,

33 autoplayDisableOnInteraction: true,

34 autoplayStopOnLast: false,

35 // To support iOS's swipe-to-go-back gesture (when being used in-app, with UIWebView).

36 iOSEdgeSwipeDetection: false,

37 iOSEdgeSwipeThreshold: 20,

38 // Free mode

39 freeMode: false,

40 freeModeMomentum: true,

...

</html>