-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (71 loc) · 3.57 KB
/
index.html
File metadata and controls
72 lines (71 loc) · 3.57 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="css/main.css" rel="stylesheet" />
<link href="css/tutorial.css" rel="stylesheet" />
<link href="css/animation.css" rel="stylesheet" />
<link href="css/dialog.css" rel="stylesheet" />
<script src="src/main.js" type="module"></script>
</head>
<body>
<div class="window" id="settings-dialog">
<div class="title-bar">
<div>Settings</div>
<button class="close-button" id="close-dialog">x</button>
</div>
<div class="window-content">
<div class="window-content-form">
<div class="window-content-row">
<label>Show background image:</label><input type="checkbox" checked id="settings-show-background" />
<label>Background blur (in 'px'):</label><input value="100" id="settings-blur" />
</div>
<div>
<hr />
</div>
<div class="window-content-row">
<label>Background color:</label><input value="#FFFFFF" id="settings-background-color" />
</div>
<div class="window-content-row">
<label>Plastic wrapper opacity:</label><input value="0.5" id="settings-wrapper-opacity" />
<label>Scale:</label><input value="1.0" id="settings-scale" />
</div>
</div>
</div>
</div>
<div class="slide tutorial">
<div class="footer"><span style="display: inline-block; transform: scale(-1.0);">©</span> 2025 - Provided by <span class="italic">UKIYO・Fairway</span> Software (株) - All rights reversed.</div>
<div class="noise"></div>
<div class="content">
<div class="header">
<h1>RecSpinAnim™</h1>
<span class="italic subheader">Easily make vinyl record spinning animations!</span>
</div>
<div class="steps">
<p class="center">Scroll down to the designer view.</p>
<p><strong>Step 1:</strong> Drag cover artwork on the vinyl sleeve</p>
<p><strong>Step 2:</strong> Drag label artwork on the record</p>
<p><strong>Step 3:</strong> Optionally change visuals in the <span class="button" id="open-dialog">Settings Dialog</span></p>
<p><strong>Step 4:</strong> Use a screen recording software to make a video of the animation (e.g. QuickTime)</p>
<p><strong>Step 5:</strong> ? ? ?</p>
<p><strong>Step 6:</strong> Profit. <span class="italic highlight">Higher and higher!</span></p>
</div>
<div class="scroll_indicator bobbing">▽</div>
</div>
</div>
<div class="slide">
<div class="background_image" id="background_image"></div>
<div class="site" id="designer">
<div class="container" id="designer-scaler">
<div class="coverart" id="coverart">
<div class="plastic_wrap" id="plastic_wrap"></div>
</div>
<div class="record spinner" id="record">
<div class="record_label" id="record_label"></div>
<div class="record_vinyl"></div>
</div>
</div>
</div>
</div>
</body>
</html>