-
Notifications
You must be signed in to change notification settings - Fork 0
/
Slider.js
67 lines (56 loc) · 1.1 KB
/
Slider.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
$(document).ready(function () {
$("#HomeSlider").slick({
slidesToShow: 7,
slidesToScroll: 1,
autoplay: true,
centerMod:false,
initialSlide:0,
arrows:false,
autoplaySpeed: 2000,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 1,
},
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 1,
},
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1,
},
},
],
});
$('#HomeBanner').slick(
{
autoplay: true,
arrows:false,
autoplaySpeed: 4000,
},
);
$('.homeWorkFrom').slick({
slidesToShow: 3,
adaptiveHeight: true,
speed: 300,
});
$('#sideAdd2').slick(
{
autoplay: true,
arrows:false,
autoplaySpeed: 5000,
adaptiveHeight: true,
fade: true,
cssEase: 'linear'
},
);
});