forked from google/marzipano
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (92 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
97 lines (92 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marzipano-TS Development</title>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background: #1a1a1a;
color: #fff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
h1 {
margin: 0 0 1rem 0;
}
.info {
background: #2a2a2a;
padding: 1rem;
border-radius: 8px;
margin-bottom: 2rem;
}
.demo-viewer {
width: 100%;
height: 600px;
background: #000;
border-radius: 8px;
}
a {
color: #4a9eff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.links {
margin-top: 2rem;
display: flex;
gap: 2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>🌐 Marzipano-TS Development Server</h1>
<div class="info">
<h2>Development Status</h2>
<p>✅ Vite dev server is running</p>
<p>📦 ES Module system ready</p>
<p>🔧 Hot Module Replacement enabled</p>
</div>
<div class="info">
<h3>Next Steps:</h3>
<ol>
<li>Run tests with Vitest</li>
<li>Build the library</li>
<li>Check the README for usage examples</li>
</ol>
</div>
<div class="links">
<div>
<h3>Resources</h3>
<ul>
<li><a href="https://github.com/Pixel-Process-UG/marzipano-ts">GitHub Repository</a></li>
</ul>
</div>
<div>
<h3>Scripts</h3>
<ul>
<li><code>npm run dev</code> - This dev server</li>
<li><code>npm test</code> - Run tests</li>
<li><code>npm run build</code> - Build for production</li>
<li><code>npm run lint</code> - Lint code</li>
</ul>
</div>
</div>
</div>
<!-- Once modules are converted, this will load the library -->
<!-- <script type="module">
import Marzipano from './src/index.js';
console.log('Marzipano loaded:', Marzipano);
</script> -->
<script>
console.log('🌐 Marzipano-TS development server ready');
</script>
</body>
</html>