-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-js.js
131 lines (119 loc) · 6.03 KB
/
main-js.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
$(function(){
const arrImages = [
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/elena-mozhvilo-vGbkqyCRA1Q-unsplash.webp",
desc : "Photo by Elena Mozhvilo on Unsplash https://unsplash.com/photos/vGbkqyCRA1Q"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/jon-parry-C8eSYwQkwHw-unsplash.webp",
desc : "Photo by Jon Parry on Unsplash https://unsplash.com/photos/C8eSYwQkwHw"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/karthik-sreenivas-rsx-joaKYrk-unsplash.webp",
desc : "Photo by Karthik Sreenivas on Unsplash https://unsplash.com/photos/rsx-joaKYrk"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/kaung-myat-min-n39-bU4c5kQ-unsplash.webp",
desc : "Photo by Kaung Myat Min on Unsplash https://unsplash.com/photos/n39-bU4c5kQ"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/will-4lbniAdMzcc-unsplash.webp",
desc : "Photo by Will on Unsplash https://unsplash.com/photos/4lbniAdMzcc"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/mostafa-meraji-HJgEB78b2Z8-unsplash.webp",
desc : "Photo by Mostafa Meraji on Unsplash https://unsplash.com/photos/HJgEB78b2Z8"
}
]
const arrVideos = [
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/videos/production_id_4114797 (720p).mp4",
desc : "Video by Edward Jenner from Pexels: https://www.pexels.com/video/laboratory-medical-medicine-virus-4114797/"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/videos/video (720p).mp4",
desc : "Video by Pressmaster: https://www.pexels.com/video/digital-formation-of-a-dna-in-an-animated-presentation-3191572/"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/videos/video (720p) (1).mp4",
desc : "Video by Dan Cristian Pădureț: https://www.pexels.com/video/slow-motion-footage-of-the-movement-of-yellow-fluid-mixed-in-water-creating-abstract-3051356/"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/videos/pexels-otavio-henrique-17903408 (720p).mp4",
desc : "Video by Otavio Henrique: https://www.pexels.com/video/balneario-camboriu-17903408/"
}
]
const arrMedia = [
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/elena-mozhvilo-vGbkqyCRA1Q-unsplash.webp",
type: "image",
desc : "Photo by Elena Mozhvilo on Unsplash https://unsplash.com/photos/vGbkqyCRA1Q"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/jon-parry-C8eSYwQkwHw-unsplash.webp",
type: "image",
desc : "Photo by Jon Parry on Unsplash https://unsplash.com/photos/C8eSYwQkwHw"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/videos/production_id_4114797 (720p).mp4",
type: "video",
desc : "Video by Edward Jenner from Pexels: https://www.pexels.com/video/laboratory-medical-medicine-virus-4114797/"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/videos/pexels-otavio-henrique-17903408 (720p).mp4",
type: "video",
desc : "Video by Otavio Henrique: https://www.pexels.com/video/balneario-camboriu-17903408/"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/images/will-4lbniAdMzcc-unsplash.webp",
type: "image",
desc : "Photo by Will on Unsplash https://unsplash.com/photos/4lbniAdMzcc"
},
{
src : "https://ik.imagekit.io/cwattm/jQuery-Lightbox-Gallery-images/videos/video (720p).mp4",
type: "video",
desc : "Video by Pressmaster: https://www.pexels.com/video/digital-formation-of-a-dna-in-an-animated-presentation-3191572/"
},
{
src : "https://www.youtube.com/embed/dQw4w9WgXcQ?si=FmFdlBKYvNF_Evze",
type: "iframe",
desc : "Rick Astley - Never Gonna Give You Up (Official Music Video)"
}
]
const imageSectionContainer = $('.image-section');
const videoSectionContainer = $('.video-section');
const imageGallery = $(`<div class="image-gallery"></div>`);
const videoGallery = $(`<div class="video-gallery"></div>`);
const btnOpenMediaLightbox = $('#btn-open-media-lightbox');
$.each(arrImages, function(key, image){
let imageSrc = image.src;
let imageLink = $(`
<a class="thumbnail-box gallery-images" href="${imageSrc}">
<img src="${imageSrc}" alt="gallery-img_${key}" loading="lazy"/>
</a>`);
imageLink.on('click', function(e){
e.preventDefault();
e.stopImmediatePropagation();
imageLightbox(arrImages, key);
});
imageGallery.append(imageLink);
imageSectionContainer.append(imageGallery);
});
$.each(arrVideos, function(key, video){
let videoSrc = video.src;
let videoLink = $(`
<a class="thumbnail-box gallery-videos" href="${videoSrc}">
<video src="${videoSrc}" muted></video>
</a>`);
videoLink.on('click', function(e){
e.preventDefault();
e.stopImmediatePropagation();
videoLightbox(arrVideos, key);
});
videoGallery.append(videoLink);
videoSectionContainer.append(videoGallery);
});
btnOpenMediaLightbox.on('click', function(){
mediaLightbox(arrMedia);
});
});