|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | +<meta charset="UTF-8"> |
| 5 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | +<meta name="description" content="Browser-based projection mapping tool with WebGL. Map videos, images, and camera feeds onto any surface with real-time perspective correction."> |
| 7 | +<title>Projection Mapping Web - Free Online Video Mapping Tool</title> |
| 8 | +<style> |
| 9 | +* { margin: 0; padding: 0; box-sizing: border-box; } |
| 10 | +body { |
| 11 | + background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); |
| 12 | + color: #eee; |
| 13 | + font-family: system-ui, -apple-system, sans-serif; |
| 14 | + min-height: 100vh; |
| 15 | + display: flex; |
| 16 | + align-items: center; |
| 17 | + justify-content: center; |
| 18 | + padding: 20px; |
| 19 | +} |
| 20 | + |
| 21 | +.container { |
| 22 | + max-width: 900px; |
| 23 | + width: 100%; |
| 24 | +} |
| 25 | + |
| 26 | +header { |
| 27 | + text-align: center; |
| 28 | + margin-bottom: 60px; |
| 29 | +} |
| 30 | + |
| 31 | +h1 { |
| 32 | + font-size: 3.5rem; |
| 33 | + color: #0f9; |
| 34 | + margin-bottom: 16px; |
| 35 | + text-shadow: 0 0 20px rgba(0, 255, 153, 0.3); |
| 36 | +} |
| 37 | + |
| 38 | +.tagline { |
| 39 | + font-size: 1.25rem; |
| 40 | + color: #aaa; |
| 41 | + font-weight: 300; |
| 42 | +} |
| 43 | + |
| 44 | +.hero { |
| 45 | + background: rgba(22, 33, 62, 0.6); |
| 46 | + backdrop-filter: blur(10px); |
| 47 | + border: 1px solid rgba(0, 255, 153, 0.2); |
| 48 | + border-radius: 12px; |
| 49 | + padding: 48px; |
| 50 | + margin-bottom: 48px; |
| 51 | + text-align: center; |
| 52 | +} |
| 53 | + |
| 54 | +.hero p { |
| 55 | + font-size: 1.1rem; |
| 56 | + line-height: 1.8; |
| 57 | + color: #ccc; |
| 58 | + margin-bottom: 32px; |
| 59 | +} |
| 60 | + |
| 61 | +.cta-button { |
| 62 | + display: inline-block; |
| 63 | + padding: 16px 48px; |
| 64 | + background: #0f9; |
| 65 | + color: #000; |
| 66 | + text-decoration: none; |
| 67 | + font-size: 1.25rem; |
| 68 | + font-weight: 600; |
| 69 | + border-radius: 8px; |
| 70 | + transition: all 0.3s ease; |
| 71 | + box-shadow: 0 4px 20px rgba(0, 255, 153, 0.3); |
| 72 | +} |
| 73 | + |
| 74 | +.cta-button:hover { |
| 75 | + background: #0da; |
| 76 | + transform: translateY(-2px); |
| 77 | + box-shadow: 0 6px 30px rgba(0, 255, 153, 0.4); |
| 78 | +} |
| 79 | + |
| 80 | +.features { |
| 81 | + display: grid; |
| 82 | + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
| 83 | + gap: 24px; |
| 84 | + margin-bottom: 48px; |
| 85 | +} |
| 86 | + |
| 87 | +.feature { |
| 88 | + background: rgba(22, 33, 62, 0.4); |
| 89 | + border: 1px solid rgba(255, 255, 255, 0.1); |
| 90 | + border-radius: 8px; |
| 91 | + padding: 24px; |
| 92 | + transition: all 0.3s ease; |
| 93 | +} |
| 94 | + |
| 95 | +.feature:hover { |
| 96 | + border-color: rgba(0, 255, 153, 0.3); |
| 97 | + transform: translateY(-4px); |
| 98 | +} |
| 99 | + |
| 100 | +.feature-icon { |
| 101 | + font-size: 2rem; |
| 102 | + margin-bottom: 12px; |
| 103 | +} |
| 104 | + |
| 105 | +.feature h3 { |
| 106 | + color: #0f9; |
| 107 | + font-size: 1.1rem; |
| 108 | + margin-bottom: 8px; |
| 109 | +} |
| 110 | + |
| 111 | +.feature p { |
| 112 | + color: #aaa; |
| 113 | + font-size: 0.95rem; |
| 114 | + line-height: 1.6; |
| 115 | +} |
| 116 | + |
| 117 | +.tech-stack { |
| 118 | + background: rgba(22, 33, 62, 0.3); |
| 119 | + border-radius: 8px; |
| 120 | + padding: 32px; |
| 121 | + text-align: center; |
| 122 | +} |
| 123 | + |
| 124 | +.tech-stack h2 { |
| 125 | + color: #0f9; |
| 126 | + font-size: 1.5rem; |
| 127 | + margin-bottom: 16px; |
| 128 | +} |
| 129 | + |
| 130 | +.tech-list { |
| 131 | + display: flex; |
| 132 | + flex-wrap: wrap; |
| 133 | + justify-content: center; |
| 134 | + gap: 16px; |
| 135 | + margin-top: 20px; |
| 136 | +} |
| 137 | + |
| 138 | +.tech-badge { |
| 139 | + background: rgba(0, 255, 153, 0.1); |
| 140 | + border: 1px solid rgba(0, 255, 153, 0.3); |
| 141 | + padding: 8px 16px; |
| 142 | + border-radius: 20px; |
| 143 | + font-size: 0.9rem; |
| 144 | + color: #0f9; |
| 145 | +} |
| 146 | + |
| 147 | +footer { |
| 148 | + text-align: center; |
| 149 | + margin-top: 48px; |
| 150 | + padding-top: 24px; |
| 151 | + border-top: 1px solid rgba(255, 255, 255, 0.1); |
| 152 | + color: #666; |
| 153 | + font-size: 0.9rem; |
| 154 | +} |
| 155 | + |
| 156 | +footer a { |
| 157 | + color: #0f9; |
| 158 | + text-decoration: none; |
| 159 | +} |
| 160 | + |
| 161 | +footer a:hover { |
| 162 | + text-decoration: underline; |
| 163 | +} |
| 164 | + |
| 165 | +@media (max-width: 768px) { |
| 166 | + h1 { font-size: 2.5rem; } |
| 167 | + .tagline { font-size: 1rem; } |
| 168 | + .hero { padding: 32px 24px; } |
| 169 | + .cta-button { padding: 14px 32px; font-size: 1.1rem; } |
| 170 | +} |
| 171 | +</style> |
| 172 | +</head> |
| 173 | +<body> |
| 174 | +<div class="container"> |
| 175 | + <header> |
| 176 | + <h1>🎥 Projection Mapping Web</h1> |
| 177 | + <p class="tagline">Transform any surface into a dynamic canvas</p> |
| 178 | + </header> |
| 179 | + |
| 180 | + <div class="hero"> |
| 181 | + <p> |
| 182 | + A powerful, browser-based projection mapping tool built with WebGL. |
| 183 | + Map videos, images, or live camera feeds onto any surface with precise |
| 184 | + 4-corner perspective correction. No installation required—just open and create. |
| 185 | + </p> |
| 186 | + <a href="app.html" class="cta-button">Launch App →</a> |
| 187 | + </div> |
| 188 | + |
| 189 | + <div class="features"> |
| 190 | + <div class="feature"> |
| 191 | + <div class="feature-icon">🎬</div> |
| 192 | + <h3>Multi-Layer Support</h3> |
| 193 | + <p>Work with multiple layers simultaneously for complex visual compositions</p> |
| 194 | + </div> |
| 195 | + |
| 196 | + <div class="feature"> |
| 197 | + <div class="feature-icon">📁</div> |
| 198 | + <h3>Multiple Sources</h3> |
| 199 | + <p>Use videos, images, live camera feeds, or solid colors as your content</p> |
| 200 | + </div> |
| 201 | + |
| 202 | + <div class="feature"> |
| 203 | + <div class="feature-icon">🎯</div> |
| 204 | + <h3>Real-Time Warping</h3> |
| 205 | + <p>Drag corner points to precisely map content onto any surface shape</p> |
| 206 | + </div> |
| 207 | + |
| 208 | + <div class="feature"> |
| 209 | + <div class="feature-icon">⚡</div> |
| 210 | + <h3>Hardware Accelerated</h3> |
| 211 | + <p>Smooth performance powered by WebGL with real-time video playback</p> |
| 212 | + </div> |
| 213 | + |
| 214 | + <div class="feature"> |
| 215 | + <div class="feature-icon">⌨️</div> |
| 216 | + <h3>Keyboard Shortcuts</h3> |
| 217 | + <p>Fast workflow with hotkeys for common operations and layer switching</p> |
| 218 | + </div> |
| 219 | + |
| 220 | + <div class="feature"> |
| 221 | + <div class="feature-icon">🌐</div> |
| 222 | + <h3>No Installation</h3> |
| 223 | + <p>Runs entirely in your browser—works on any device with WebGL support</p> |
| 224 | + </div> |
| 225 | + </div> |
| 226 | + |
| 227 | + <div class="tech-stack"> |
| 228 | + <h2>Built With Modern Web Technologies</h2> |
| 229 | + <div class="tech-list"> |
| 230 | + <span class="tech-badge">WebGL</span> |
| 231 | + <span class="tech-badge">JavaScript ES6+</span> |
| 232 | + <span class="tech-badge">MediaDevices API</span> |
| 233 | + <span class="tech-badge">GLSL Shaders</span> |
| 234 | + <span class="tech-badge">Vanilla JS</span> |
| 235 | + </div> |
| 236 | + </div> |
| 237 | + |
| 238 | + <footer> |
| 239 | + <p>Open source project • <a href="https://github.com/vitalyu/ProjectorVideoMappingWeb" target="_blank">View on GitHub</a></p> |
| 240 | + </footer> |
| 241 | +</div> |
| 242 | +</body> |
| 243 | +</html> |
0 commit comments