x
File size: 3,577 Bytes
d284da5
6616e2d
 
 
 
 
 
 
d284da5
6616e2d
 
 
 
 
 
 
 
 
 
 
 
 
 
1928cb0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6616e2d
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Interactive Hong Kong Map</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        #map-container {
            perspective: 1000px;
        }
        .district {
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }
        .district:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            z-index: 10;
        }
        .district.active {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            z-index: 20;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        #victoria-harbor {
            background: linear-gradient(90deg, rgba(0,119,190,0.3) 0%, rgba(0,119,190,0.1) 50%, rgba(0,119,190,0.3) 100%);
        }
    </style>
</head>
<body class="bg-gray-100 font-sans">
    <div class="container mx-auto px-4 py-8">
        <div class="text-center mb-8">
            <h1 class="text-4xl font-bold text-indigo-800 mb-2">Hong Kong Explorer</h1>
            <p class="text-lg text-gray-600">Discover the vibrant districts of Asia's World City</p>
            <div class="mt-4 flex justify-center space-x-4">
                <button id="tour-btn" class="px-4 py-2 bg-indigo-600 text-white rounded-full hover:bg-indigo-700 transition flex items-center">
                    <i class="fas fa-map-marked-alt mr-2"></i> Take a Tour
                </button>
                <button id="reset-btn" class="px-4 py-2 bg-gray-200 text-gray-700 rounded-full hover:bg-gray-300 transition">
                    Reset Map
                </button>
            </div>
        </div>

        <div id="map-container" class="relative w-full max-w-4xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden">
            <!-- Hong Kong Island -->
            <div class="absolute top-10 left-1/4 w-1/3">
                <div id="central-western" class="district absolute top-0 left-0 w-24 h-24 bg-red-200 rounded-lg cursor-pointer flex items-center justify-center text-xs font-medium text-red-800" data-info="Central & Western District - The financial heart of Hong Kong with colonial heritage">
                    Central & Western
                </div>
                <div id="wan-chai" class="district absolute top-20 left-20 w-20 h-20 bg-red-300 rounded-lg cursor-pointer flex items-center justify-center text-xs font-medium text-red-900" data-info="Wan Chai - Mix of business and entertainment with the iconic Convention Centre">
                    Wan Chai
                </div>
                <div id="eastern" class="district absolute top-40 left-10 w-28 h-20 bg-red-400 rounded-lg cursor-pointer flex items-center justify-center text-xs font-medium text-white" data-info="Eastern District - Residential areas with beautiful coastal scenery">
                    Eastern
                </div>
                <div id="southern" class="district absolute top-60 left-0 w-32 h-24 bg-red-500 rounded-lg cursor-pointer flex items-center justify-center text-xs font-medium text-white" data-info="Southern District - Luxury
</html>