Spaces:
Sleeping
Sleeping
Antigravity Agent commited on
Commit ·
4d1e5cc
1
Parent(s): c3f3f0a
feat: Add Netlify iframe gateway and redirects
Browse files- _redirects +1 -0
- gateway.html +21 -0
_redirects
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
/* /gateway.html 200
|
gateway.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="zh-CN">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>神思庭 · 全息世界多模态智能体 | 创世首映</title>
|
| 7 |
+
<style>
|
| 8 |
+
body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; background-color: #050505; }
|
| 9 |
+
iframe { width: 100%; height: 100%; border: none; display: block; }
|
| 10 |
+
#loading { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #050505; color: #4a90e2; display: flex; justify-content: center; align-items: center; font-family: sans-serif; pointer-events: none; transition: opacity 0.5s; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<div id="loading">正在接入神思庭多模态算力矩阵...</div>
|
| 15 |
+
<iframe
|
| 16 |
+
src="https://jinv2-genesis-agent.hf.space"
|
| 17 |
+
allow="microphone; camera; autoplay; encrypted-media"
|
| 18 |
+
onload="document.getElementById('loading').style.opacity='0';">
|
| 19 |
+
</iframe>
|
| 20 |
+
</body>
|
| 21 |
+
</html>
|