forked from Harmann60/SIT_StudentKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
129 lines (116 loc) · 12.2 KB
/
gallery.html
File metadata and controls
129 lines (116 loc) · 12.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery</title>
<link rel="icon" type="" href="img/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Lato:wght@400;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Lato', sans-serif; background-color: #ffffff; color: #1f2937; }
h1, h2, h3, h4, h5, h6, .font-heading { font-family: 'Poppins', sans-serif; }
</style>
<link href="footer.css" rel="stylesheet">
</head>
<body class="text-gray-800">
<header id="navbar" class="fixed top-0 left-0 right-0 z-50 transition-all duration-300 bg-white/90 backdrop-blur-lg border-b border-gray-200 shadow-sm">
<div class="container mx-auto px-6 py-3 flex justify-between items-center">
<a href="index.html" class="flex items-center space-x-3"><img src="img/Sit logo no bg.png" alt="SIT Logo" class="h-10 w-30"><span class="text-xl font-bold tracking-wider text-gray-800 hover:text-red-600 transition-colors font-heading">Symbiosis Institute Of Technology</span></a>
<nav class="hidden md:flex items-center space-x-6">
<a href="index.html" class="text-gray-600 hover:text-red-600 transition-colors">Home</a>
<div class="relative" id="departments-dropdown-container">
<button id="departments-dropdown-button" class="text-gray-600 hover:text-red-600 transition-colors flex items-center">Messages<svg class="w-4 h-4 ml-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg></button>
<div id="departments-dropdown-menu" class="absolute left-0 mt-2 w-48 bg-white rounded-md shadow-lg border border-gray-200 hidden z-10">
<a href="chancellor.html" class="block px-4 py-2 text-sm text-gray-700 hover:bg-red-50 hover:text-red-600">Chancellor's Message</a><a href="director.html" class="block px-4 py-2 text-sm text-gray-700 hover:bg-red-50 hover:text-red-600">Director's Message</a><a href="students.html" class="block px-4 py-2 text-sm text-gray-700 hover:bg-red-50 hover:text-red-600">From Our Students</a><a href="creators.html" class="block px-4 py-2 text-sm text-gray-700 hover:bg-red-50 hover:text-red-600">From The Creators</a>
</div>
</div>
<a href="essentials.html" class="text-gray-600 hover:text-red-600 transition-colors">Student Essentials</a><a href="gallery.html" class="text-gray-600 hover:text-red-600 transition-colors">Gallery</a><a href="directions.html" class="text-gray-600 hover:text-red-600 transition-colors">Directions</a><a href="contact.html" class="text-gray-600 hover:text-red-600 transition-colors">Contact Us</a>
</nav>
<button id="mobile-menu-button" class="md:hidden text-2xl text-gray-800">☰</button>
</div>
<div id="mobile-menu" class="hidden md:hidden px-6 pb-4 bg-white border-t border-gray-200">
<a href="index.html" class="block py-2 text-gray-600 hover:text-red-600 transition-colors">Home</a>
<div>
<button id="mobile-departments-button" class="w-full text-left py-2 text-gray-600 hover:text-red-600 transition-colors flex justify-between items-center">Departments<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg></button>
<div id="mobile-departments-menu" class="pl-4 hidden">
<a href="chancellor.html" class="block py-2 text-sm text-gray-600 hover:text-red-600">Chancellor's Message</a><a href="director.html" class="block py-2 text-sm text-gray-600 hover:text-red-600">Director's Message</a><a href="students.html" class="block py-2 text-sm text-gray-600 hover:text-red-600">From Our Students</a><a href="creators.html" class="block py-2 text-sm text-gray-600 hover:text-red-600">From The Creators</a>
</div>
</div>
<a href="essentials.html" class="block py-2 text-gray-600 hover:text-red-600 transition-colors">Student Essentials</a><a href="gallery.html" class="block py-2 text-gray-600 hover:text-red-600 transition-colors">Gallery</a><a href="directions.html" class="block py-2 text-gray-600 hover:text-red-600 transition-colors">Directions</a><a href="contact.html" class="block py-2 text-gray-600 hover:text-red-600 transition-colors">Contact Us</a>
</div>
</header>
<script src="gallery.js"> </script>
<main class="bg-white pt-24">
<section class="container mx-auto py-16 px-4">
<h1 class="text-4xl font-bold text-center text-red-600 mb-12 font-heading">Campus Moments</h1>
<!-- Carousel -->
<div id="carousel" class="relative max-w-7xl mx-auto mb-16 shadow-2xl rounded-lg">
<div id="carousel-inner" class="relative w-full overflow-hidden rounded-lg" style="height: 80vh;">
<!-- Carousel items -->
<div class="carousel-item absolute inset-0 transition-opacity duration-700 ease-in-out">
<img src="img/baner/1.png" class="w-full h-full object-cover" alt="">
</div>
<div class="carousel-item absolute inset-0 transition-opacity duration-700 ease-in-out opacity-0">
<img src="img/baner/3.png" class="w-full h-full object-cover" alt="">
</div>
<div class="carousel-item absolute inset-0 transition-opacity duration-700 ease-in-out opacity-0">
<img src="img/baner/5.png" class="w-full h-full object-cover" alt="">
</div>
<div class="carousel-item absolute inset-0 transition-opacity duration-700 ease-in-out opacity-0">
<img src="img/baner/2.png" class="w-full h-full object-cover" alt="">
</div>
<div class="carousel-item absolute inset-0 transition-opacity duration-700 ease-in-out opacity-0">
<img src="img/baner/4.png" class="w-full h-full object-cover" alt="">
</div>
<div class="carousel-item absolute inset-0 transition-opacity duration-700 ease-in-out opacity-0">
<img src="img/baner/6.png" class="w-full h-full object-cover" alt="">
</div>
</div>
<!-- Prev/Next buttons -->
<button id="prev-btn" class="absolute top-1/2 left-4 -translate-y-1/2 bg-white/50 hover:bg-white p-2 rounded-full shadow-md"><svg class="w-6 h-6 text-gray-800" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path></svg></button>
<button id="next-btn" class="absolute top-1/2 right-4 -translate-y-1/2 bg-white/50 hover:bg-white p-2 rounded-full shadow-md"><svg class="w-6 h-6 text-gray-800" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg></button>
</div>
<!-- Photo Grid -->
<h2 class="text-3xl font-bold text-center text-gray-800 mb-10 font-heading">A Glimpse of Our Life</h2>
<div id="photo-grid" class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
<!-- Repeat this block for each photo -->
<div class="group cursor-pointer"><img src="img/1.png" alt="Gallery image 1" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/18.png" alt="Gallery image 2" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/16.png" alt="Gallery image 3" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/4.png" alt="Gallery image 4" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">></div>
<div class="group cursor-pointer"><img src="img/5.png" alt="Gallery image 5" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/6.png" alt="Gallery image 6" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/7.png" alt="Gallery image 7" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/8.png" alt="Gallery image 8" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/9.png" alt="Gallery image 9" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/10.png" alt="Gallery image 10" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/11.png" alt="Gallery image 11" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/12.png" alt="Gallery image 12" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/17.png" alt="Gallery image 13" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/14.png" alt="Gallery image 14" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
<div class="group cursor-pointer"><img src="img/15.png" alt="Gallery image 15" class="w-full h-auto object-cover rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300"></div>
</div>
</section>
</main>
<div id="lightbox" class="fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center hidden z-50">
<button id="lightbox-close" class="absolute top-6 right-8 text-white text-5xl font-bold">×</button>
<img id="lightbox-image" src="" alt="Enlarged gallery image" class="max-w-full max-h-full p-1 rounded-lg shadow-lg">
</div>
<footer class="site-footer">
<div class="container">
<div class="footer-menu">
<a href="https://www.linkedin.com/school/sitpune.edu.in/" class="footer-link">| LinkedIn |</a>
<a href="index.html" class="footer-link">| Home |</a>
<a href="https://www.sitpune.edu.in/" class="footer-link">| SIT-P |</a>
<a href="about.us.html" class="footer-link">| About Us |</a>
</div>
<div class="copyright-text">
Student Kit 2025 | Created With Love ❤️ Harman Ayush Jalaj Gauri
</div>
</div>
</footer>
</body>
</html>