-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-reaper-control.html
More file actions
85 lines (81 loc) · 2.24 KB
/
Copy pathreact-reaper-control.html
File metadata and controls
85 lines (81 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<base href="/" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>React REAPER Control Panel</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Cache-Control" content="no-cache, no-store" />
<link
rel="icon"
type="image/png"
href="react-reaper-ui/build/favicon.ico"
/>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="/config.js"></script>
</head>
<body>
<!-- This loader shows while React is initializing -->
<div
id="loader"
style="
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #2c2c2c;
color: white;
"
>
<div style="text-align: center">
<h2>Loading React REAPER Interface...</h2>
<div
style="
display: inline-block;
width: 50px;
height: 50px;
border: 6px solid #444;
border-radius: 50%;
border-top-color: #888;
animation: spin 1s ease-in-out infinite;
"
></div>
</div>
</div>
<style>
@keyframes spin {
to {
transform: rotate(360deg);
}
}
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
"Helvetica Neue", sans-serif;
}
</style>
<!-- Load our React app from the build folder -->
<script>
// Hide the loader when the React app is ready
window.onload = function () {
setTimeout(function () {
document.getElementById("loader").style.display = "none"
}, 1000)
}
</script>
<!-- Include React app's static resources -->
<link
href="react-reaper-ui/build/static/css/main.a22f4be8.css"
rel="stylesheet"
/>
<script
defer="defer"
src="react-reaper-ui/build/static/js/main.4f7c2135.js"
></script>
<!-- Root element for React to mount to -->
<div id="root"></div>
</body>
</html>