-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarousel.js
64 lines (64 loc) · 2.02 KB
/
carousel.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
$("#toggleLeft").click(function(){
$("#myCarousel").fadeOut(1000);
$(".gallery").hide();
$(".fullScene").show();
$("#myCarousel3").fadeIn(1500);
});
$("#toggleLeft2").click(function(){
$("#myCarousel1").fadeOut(1000);
$(".productionStills").hide();
$(".gallery").show();
$("#myCarousel").fadeIn(1500);
});
$("#toggleLeft3").click(function(){
$("#myCarousel2").fadeOut(1000);
$(".physique").hide();
$(".productionStills").show();
$("#myCarousel1").fadeIn(1500);
});
$("#toggleLeft4").click(function(){
$("#myCarousel3").fadeOut(1000);
$(".fullScene").hide();
$(".physique").show();
$("#myCarousel2").fadeIn(1500);
});
/*
$("#toggleLeft5").click(function(){
$("#myCarousel4").fadeOut(1000);
$(".other").hide();
$(".fullScene").show();
$("#myCarousel3").fadeIn(1500);
});
*/
$("#toggleRight").click(function(){
$("#myCarousel").fadeOut(1000);
$(".gallery").hide();
$(".productionStills").show();
$("#myCarousel1").fadeIn(1500);
});
$("#toggleRight2").click(function(){
$("#myCarousel1").fadeOut(1000);
$(".productionStills").hide();
$(".physique").show();
$("#myCarousel2").fadeIn(1500);
});
$("#toggleRight3").click(function(){
$("#myCarousel2").fadeOut(1000);
$(".physique").hide();
$(".fullScene").show();
$("#myCarousel3").fadeIn(1500);
});
$("#toggleRight4").click(function(){
$("#myCarousel3").fadeOut(1000);
$(".fullScene").hide();
$(".gallery").show();
$("#myCarousel").fadeIn(1500);
});
/*
$("#toggleRight5").click(function(){
$("#myCarousel4").fadeOut(1000);
$(".other").hide();
$(".gallery").show();
$("#myCarousel").fadeIn(1500);
});
*/