-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
32 lines (32 loc) · 1.08 KB
/
Copy pathscript.js
File metadata and controls
32 lines (32 loc) · 1.08 KB
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
$('#demo').on('slide.bs.carousel', function onSlide (ev) {
var id = ev.relatedTarget.id;
switch (id) {
case "1":
$('#myModal.modal-body').html('\
<a data-flickr-embed="true" title="merged">\
<img src="image1_1.jpg" width="500" alt="ZhuojunYingResume Final_page-0001">\
</a>');
// do something the id is 1
break;
case "2":
$('#myModal.modal-body').html('\
<a data-flickr-embed="true" title="merged">\
<img src="image2_1.jpg" width="500" alt="ZhuojunYingResume Final_page-0001">\
</a>');
// do something the id is 2
break;
case "3":
$('#myModal.modal-body').html('\
<a data-flickr-embed="true" title="merged">\
<img src="image3_1.jpg" width="500" alt="ZhuojunYingResume Final_page-0001">\
</a>');
// do something the id is 3
break;
default:
$('#myModal.modal-body').html('\
<a data-flickr-embed="true" title="merged">\
<img src="image1_1.jpg" width="500" alt="ZhuojunYingResume Final_page-0001">\
</a>');
//the id is none of the above
}
})