-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
313 lines (279 loc) · 17.3 KB
/
index.html
File metadata and controls
313 lines (279 loc) · 17.3 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
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="vi" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>V360 OpenGIS - Du Lịch Ảo & Số Hóa Di Sản Việt Nam</title>
<!-- Tailwind CSS for modern styling -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Lucide Icons for a clean icon set -->
<script src="https://unpkg.com/lucide@latest"></script>
<style>
/* Custom styles for the page */
body {
font-family: 'Inter', sans-serif;
background-color: #0a0a0a; /* A slightly softer black */
color: #e5e5e5; /* A softer white for text */
}
/* Styling for the hero section background */
.hero-bg {
position: relative; /* Required for the ::before pseudo-element positioning */
overflow: hidden; /* Ensures the scaled background doesn't create scrollbars */
}
.hero-bg::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
z-index: -1; /* Place the background behind the content */
background-image: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.7) 40%, rgba(10, 10, 10, 0.2) 100%), url('img/bg.jpg');
background-size: cover;
background-position: center;
animation: hero-zoom 25s ease-out forwards;
}
@keyframes hero-zoom {
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
}
/* Animation for elements fading in on scroll */
.fade-in-element {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-element.is-visible {
opacity: 1;
transform: translateY(0);
}
/* Style for the sticky header when scrolled */
.header-scrolled {
background-color: rgba(10, 10, 10, 0.8);
backdrop-filter: blur(10px);
}
</style>
</head>
<body class="antialiased">
<!-- Header -->
<header id="main-header" class="fixed top-0 left-0 right-0 z-50 transition-all duration-300">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<a href="#" class="text-2xl font-bold tracking-wider text-white">
V360 <span class="text-sky-400">OpenGIS</span>
</a>
<nav class="hidden md:flex items-center space-x-8">
<a href="#hero" class="text-gray-300 hover:text-sky-400 transition-colors">Trang Chủ</a>
<a href="#projects" class="text-gray-300 hover:text-sky-400 transition-colors">Dự Án</a>
<a href="#features" class="text-gray-300 hover:text-sky-400 transition-colors">Công Nghệ</a>
</nav>
<a href="https://v360.opengis.vn" target="_blank" class="hidden md:block bg-sky-500 hover:bg-sky-600 text-white font-semibold px-5 py-2 rounded-lg transition-transform hover:scale-105">
Khám Phá Ngay
</a>
<button id="mobile-menu-button" class="md:hidden text-white">
<i data-lucide="menu"></i>
</button>
</div>
</header>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden fixed inset-0 bg-gray-900/90 z-40 backdrop-blur-sm">
<div class="flex flex-col items-center justify-center h-full space-y-8 text-xl">
<a href="#hero" class="mobile-menu-link text-gray-300 hover:text-sky-400">Trang Chủ</a>
<a href="#projects" class="mobile-menu-link text-gray-300 hover:text-sky-400">Dự Án</a>
<a href="#features" class="mobile-menu-link text-gray-300 hover:text-sky-400">Công Nghệ</a>
<a href="https://v360.opengis.vn" target="_blank" class="mt-4 bg-sky-500 text-white font-semibold px-6 py-3 rounded-lg">
Khám Phá Ngay
</a>
</div>
</div>
<!-- Hero Section -->
<section id="hero" class="hero-bg min-h-screen flex items-center justify-center text-center pt-20">
<div class="container mx-auto px-6">
<h1 class="text-4xl md:text-6xl lg:text-7xl font-extrabold text-white leading-tight mb-4 fade-in-element">
Khám Phá Di Sản Việt Nam <br class="hidden md:block"> Qua Không Gian Số
</h1>
<p class="text-lg md:text-xl text-gray-300 max-w-3xl mx-auto mb-8 fade-in-element" style="transition-delay: 200ms;">
Trải nghiệm du lịch ảo 360, khám phá các di tích lịch sử và công trình kiến trúc được số hóa 3D một cách sống động và chân thực nhất.
</p>
<a href="#projects" class="bg-sky-500 hover:bg-sky-600 text-white font-bold text-lg px-8 py-4 rounded-full transition-transform hover:scale-105 inline-block fade-in-element" style="transition-delay: 400ms;">
Xem Các Dự Án
</a>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 md:py-32">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-3 fade-in-element">Các Dự Án Nổi Bật</h2>
<p class="text-gray-400 max-w-2xl mx-auto fade-in-element">
Những sản phẩm tiêu biểu ứng dụng công nghệ 360 và 3D trong việc bảo tồn văn hóa, lịch sử và quản lý đô thị.
</p>
</div>
<!-- Project Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 lg:gap-12">
<!-- Project Card 1: Cao Bang -->
<a href="caobang" target="_blank" class="block bg-gray-900 rounded-2xl overflow-hidden group transition-all duration-300 hover:shadow-2xl hover:shadow-sky-500/10 hover:-translate-y-2 fade-in-element">
<div class="overflow-hidden">
<!-- NOTE: Replace with your actual project image for better representation -->
<img src="img/caobang.jpg" alt="Tour du lịch ảo Cao Bằng" class="w-full h-64 object-cover group-hover:scale-110 transition-transform duration-500">
</div>
<div class="p-6">
<div class="flex gap-2 mb-2">
<span class="text-xs font-semibold bg-sky-500/20 text-sky-300 px-3 py-1 rounded-full">Du Lịch Ảo 360</span>
</div>
<h3 class="text-xl font-bold text-white mb-2">Tour du lịch ảo tham quan Cao Bằng</h3>
<p class="text-gray-400 text-sm">Khám phá vẻ đẹp hùng vĩ, non nước hữu tình của Cao Bằng thông qua trải nghiệm tham quan 360 độ chân thực.</p>
</div>
</a>
<!-- Project Card 2: Buu Dien HCM -->
<a href="buudien_hcm" target="_blank" class="block bg-gray-900 rounded-2xl overflow-hidden group transition-all duration-300 hover:shadow-2xl hover:shadow-sky-500/10 hover:-translate-y-2 fade-in-element">
<div class="overflow-hidden">
<!-- NOTE: Replace with your actual project image for better representation -->
<img src="img/buudien.jpg" alt="Tour du lịch ảo Bưu điện TP.HCM" class="w-full h-64 object-cover group-hover:scale-110 transition-transform duration-500">
</div>
<div class="p-6">
<div class="flex gap-2 mb-2">
<span class="text-xs font-semibold bg-sky-500/20 text-sky-300 px-3 py-1 rounded-full">Du Lịch Ảo 360</span>
<span class="text-xs font-semibold bg-green-500/20 text-green-300 px-3 py-1 rounded-full">Di Sản Kiến Trúc</span>
</div>
<h3 class="text-xl font-bold text-white mb-2">Tour tham quan Bưu điện TP. Hồ Chí Minh</h3>
<p class="text-gray-400 text-sm">Chiêm ngưỡng nét kiến trúc cổ kính, độc đáo của một trong những biểu tượng Sài Gòn qua góc nhìn 360 độ.</p>
</div>
</a>
<!-- Project Card 3: Urban Planning -->
<a href="3D_KimDong_NinhBinh" target="_blank" class="block bg-gray-900 rounded-2xl overflow-hidden group transition-all duration-300 hover:shadow-2xl hover:shadow-sky-500/10 hover:-translate-y-2 fade-in-element">
<div class="overflow-hidden">
<!-- NOTE: Replace with your actual project image for better representation -->
<img src="img/kimdong.jpg" alt="Quản lý đô thị, quy hoạch 3D" class="w-full h-64 object-cover group-hover:scale-110 transition-transform duration-500">
</div>
<div class="p-6">
<div class="flex gap-2 mb-2">
<span class="text-xs font-semibold bg-amber-500/20 text-amber-300 px-3 py-1 rounded-full">Quy Hoạch 3D</span>
<span class="text-xs font-semibold bg-purple-500/20 text-purple-300 px-3 py-1 rounded-full">Quản Lý Đô Thị</span>
</div>
<h3 class="text-xl font-bold text-white mb-2">Quản lý đô thị và quy hoạch 3D</h3>
<p class="text-gray-400 text-sm">Nền tảng GIS 3D trực quan hóa dữ liệu quy hoạch, đất đai, hạ tầng tại Kim Động, Ninh Bình, hỗ trợ công tác quản lý hiệu quả.</p>
</div>
</a>
<!-- Project Card 4: Me Thu & My Son -->
<a href="3D_MeThu_QuangNam" target="_blank" class="block bg-gray-900 rounded-2xl overflow-hidden group transition-all duration-300 hover:shadow-2xl hover:shadow-sky-500/10 hover:-translate-y-2 fade-in-element">
<div class="overflow-hidden">
<!-- NOTE: Replace with your actual project image for better representation -->
<img src="img/quangnam.jpg" alt="Khu tượng đài Mẹ Thứ và Thánh Địa Mỹ Sơn" class="w-full h-64 object-cover group-hover:scale-110 transition-transform duration-500">
</div>
<div class="p-6">
<div class="flex gap-2 mb-2">
<span class="text-xs font-semibold bg-red-500/20 text-red-300 px-3 py-1 rounded-full">Số Hóa Di Tích 3D</span>
<span class="text-xs font-semibold bg-green-500/20 text-green-300 px-3 py-1 rounded-full">Bảo Tồn Lịch Sử</span>
</div>
<h3 class="text-xl font-bold text-white mb-2">Tượng đài Mẹ Thứ & Thánh Địa Mỹ Sơn (3D)</h3>
<p class="text-gray-400 text-sm">Số hóa 3D các công trình văn hóa, lịch sử trọng điểm, góp phần lưu giữ và quảng bá di sản đến với công chúng.</p>
</div>
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 md:py-32 bg-gray-900/50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-3 fade-in-element">Công Nghệ Tiên Phong</h2>
<p class="text-gray-400 max-w-2xl mx-auto fade-in-element">
Chúng tôi ứng dụng những công nghệ hàng đầu để tạo ra các sản phẩm số hóa chất lượng cao.
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="text-center p-6 bg-gray-900 rounded-xl fade-in-element">
<div class="flex items-center justify-center h-16 w-16 bg-sky-500/20 text-sky-400 rounded-full mx-auto mb-4">
<i data-lucide="camera" class="w-8 h-8"></i>
</div>
<h3 class="text-lg font-semibold text-white mb-2">Công nghệ 360°</h3>
<p class="text-gray-400 text-sm">Ghi lại không gian một cách toàn cảnh, mang đến trải nghiệm nhập vai và chân thực như đang có mặt tại địa điểm.</p>
</div>
<!-- Feature 2 -->
<div class="text-center p-6 bg-gray-900 rounded-xl fade-in-element" style="transition-delay: 150ms;">
<div class="flex items-center justify-center h-16 w-16 bg-green-500/20 text-green-400 rounded-full mx-auto mb-4">
<i data-lucide="layers" class="w-8 h-8"></i>
</div>
<h3 class="text-lg font-semibold text-white mb-2">Số hoá 3D</h3>
<p class="text-gray-400 text-sm">Tái tạo lại các công trình, cổ vật với độ chi tiết cao, cho phép khám phá từ mọi góc độ và tương tác trực quan.</p>
</div>
<!-- Feature 3 -->
<div class="text-center p-6 bg-gray-900 rounded-xl fade-in-element" style="transition-delay: 300ms;">
<div class="flex items-center justify-center h-16 w-16 bg-red-500/20 text-red-400 rounded-full mx-auto mb-4">
<i data-lucide="landmark" class="w-8 h-8"></i>
</div>
<h3 class="text-lg font-semibold text-white mb-2">Bảo Tồn Di Sản</h3>
<p class="text-gray-400 text-sm">Lưu giữ vĩnh viễn giá trị văn hóa, lịch sử của dân tộc trên nền tảng số, vượt qua giới hạn của không gian và thời gian.</p>
</div>
<!-- Feature 4 -->
<div class="text-center p-6 bg-gray-900 rounded-xl fade-in-element" style="transition-delay: 450ms;">
<div class="flex items-center justify-center h-16 w-16 bg-purple-500/20 text-purple-400 rounded-full mx-auto mb-4">
<i data-lucide="map" class="w-8 h-8"></i>
</div>
<h3 class="text-lg font-semibold text-white mb-2">Nền tảng GIS</h3>
<p class="text-gray-400 text-sm">Tích hợp dữ liệu 3D vào hệ thống thông tin địa lý, cung cấp một công cụ quản lý mạnh mẽ và trực quan.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 border-t border-gray-800">
<div class="container mx-auto px-6 py-8 text-center text-gray-400">
<p>© 2024 V360 OpenGIS Việt Nam. All Rights Reserved.</p>
<p class="text-sm mt-2">Phát triển và xây dựng bởi OpenGIS Việt Nam.</p>
</div>
</footer>
<script>
// Initialize Lucide Icons
lucide.createIcons();
// JavaScript for interactions
document.addEventListener('DOMContentLoaded', function () {
// --- Fade-in on Scroll Animation ---
const fadeElems = document.querySelectorAll('.fade-in-element');
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('is-visible');
observer.unobserve(entry.target);
}
});
}, observerOptions);
fadeElems.forEach(elem => {
observer.observe(elem);
});
// --- Sticky Header on Scroll ---
const header = document.getElementById('main-header');
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
header.classList.add('header-scrolled');
} else {
header.classList.remove('header-scrolled');
}
});
// --- Mobile Menu Toggle ---
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
const mobileMenuLinks = document.querySelectorAll('.mobile-menu-link');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
mobileMenuLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
});
});
});
</script>
</body>
</html>