-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
75 lines (74 loc) · 1.31 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// OWLCAROUSEL
var owl = $('.owl-informasi');
owl.owlCarousel({
loop: true,
// center:true,
lazyload: true,
autoplay: true,
autoplayTimeout: 3000,
autoplayHoverPause: false,
responsiveClass: true,
responsive: {
0: {
items: 3,
margin:0
},
600: {
items: 3,
margin:0,
},
1000: {
items: 5,
}
}
});
var owl = $('.owl-servis');
owl.owlCarousel({
loop: true,
// center:true,
lazyload: true,
margin: 10,
responsiveClass: true,
responsive: {
0: {
items: 3,
margin:0,
loop: false,
},
600: {
items: 3,
margin:0,
loop: false,
},
1000: {
items: 4,
loop: false
}
}
});
// OWLCAROUSEL
var owl = $('.owl-carousel');
owl.owlCarousel({
loop: true,
// center:true,
lazyload: true,
margin: 5,
responsiveClass: true,
responsive: {
0: {
items: 1,
loop: false,
margin:0
},
600: {
items: 3,
loop: false,
margin:0
},
1000: {
items: 3,
nav: true,
loop: false
}
}
});