-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojectThree.js
221 lines (169 loc) · 5.52 KB
/
projectThree.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
$(document).ready(function() {
//initial landing page appear
//when click on the arrow the full landing page disappear and introduction page pop up.
$(".beginArrow").on("click", function() {
$(".fullLandingImage").fadeOut();
$(".introduction").fadeIn();
});
//when click go back icon on intro page
$(".goBack.intro").on("click", function() {
$(".fullLandingImage").fadeIn();
$(".introduction").fadeOut();
});
////when mouseover the icon
let reason = $("a.reason");
let reasonAnswer = [
"We are friendly",
"We feature simplicity",
"We are affordable",
"We are honest"
];
reason.each(function(index) {
$(this).on("mouseover", function() {
$("p.reasonTag").text(reasonAnswer[index]);
});
$(this).on("mouseout", function() {
$("p.reasonTag").text("Why Choose US");
});
});
//when click takeMeThere gallery shows up
$("a.takeMeThere").on("click", function() {
$("section.introduction").fadeOut();
$("section.galleryUSA").fadeIn();
});
//brochureText
$("p.brochureText").on("click", function() {
$("section.galleryUSA").fadeOut();
$("section.message").fadeIn();
});
//when .goBack.gallery is pressed
$(".goBack.gallery").on("click", function() {
$("section.galleryUSA").fadeOut();
$("section.introduction").fadeIn();
});
//goBack.formPage
$(".goBack.formPage").on("click", function() {
$("section.galleryUSA").fadeIn();
$("section.message").fadeOut();
});
//slideshow section-----------------------------------
let slideIndex = 1;
let captionText = [
"Samui Resort",
"Apple Inc",
"Mansion @ Davisville",
"Chandler's Living Room",
"Monicas House"
];
slideShow(slideIndex);
//for changing the slides
//when the user click previous icon
$("a.previous").on("click", function() {
slideIndex = slideIndex - 1;
slideShow(slideIndex);
});
//when the user click next icon
$("a.next").on("click", function() {
slideIndex = slideIndex + 1;
slideShow(slideIndex);
});
//when the user click thumbnailImage
$(".thumbnailImage.one").on("click", function() {
slideIndex = 1;
slideShow(slideIndex);
});
$(".thumbnailImage.two").on("click", function() {
slideIndex = 2;
slideShow(slideIndex);
});
$(".thumbnailImage.three").on("click", function() {
slideIndex = 3;
slideShow(slideIndex);
});
$(".thumbnailImage.four").on("click", function() {
slideIndex = 4;
slideShow(slideIndex);
});
$(".thumbnailImage.five").on("click", function() {
slideIndex = 5;
slideShow(slideIndex);
});
function slideShow(num) {
//select all "div element" of class "slides" and store it to a variable named "slides"
let slides = $(".slides");
//select all "thumbnail image" of class "thumbnailImage" and store it to a variable named "thumbnailImage"
let thumbnailImage = $(".thumbnailImage");
//select "caption paragraph" of class "imageCaption" and store it to a variable named "caption"
let caption = $(".imageCaption");
//when using previous icon, in case, slideIndex is less than 1, it goes to the last element
if (num < 1) {
slideIndex = slides.length;
}
//in case, slideIndex is larger than the dom element length, it starts from 0
if (num > slides.length) {
slideIndex = 1;
}
//loop through the slides element to set the display none for initial page
slides.each(function() {
$(this).css("display", "none");
});
//display of selected image to block
slides.each(function(index) {
if (index == slideIndex - 1) {
$(this).css("display", "block");
}
});
//thumbnail image style control
thumbnailImage.each(function() {
$(this).removeClass("hoverMe");
});
thumbnailImage.each(function(index) {
if (index == slideIndex - 1) {
$(this).addClass("hoverMe");
}
});
caption.html(captionText[slideIndex - 1]);
}
//contact us section....
$("form").on("submit", function(event) {
event.preventDefault();
//store the input in variables
let userName = $("input.yourName:text").val();
let userEmail = $("input[name='mail']").val();
//if there is text
if (userName !== "" && userEmail !== "") {
//form disappears
$(this).css("display", "none");
//display message pop up
$(".displayText").text(
"Thank you " +
userName +
" for the subscription.Our brochure is on its way to your email address " +
userEmail
);
} else if (userName == "" || userEmail == "") {
console.log("please enter required fields");
$(".requiredFields").text("Please enter required fields");
}
});
//clear the feilds
$("input.yourName:text").val("");
$("input[name='mail']").val("");
});
/**pseudocode
>For slideshow section:
>>each time the page refreshes, (initial HTML)
>>> set value of slideIndex to 1: slideIndex = 1;
>>>call function for parameter 1 : slideShow(1);
>>>display of all div of class slides become none;
>>>display of div 1 become block
>> For pressing previous button
>>>slideIndex become: slideIndex = slideIndex - 1;
>>>call slideShow function for new parameter;
>> For pressing next button
>>>slideIndex become: slideIndex = slideIndex + 1;
>>call slideShow function for new parameter;
* >>For pressing the thumbnail images
>>>slideIndex become: slideIndex = currentIndex;
>>call slideShow function for new parameter;
*/