-
Notifications
You must be signed in to change notification settings - Fork 24
/
AnimePinCurveText.html
39 lines (36 loc) · 1.16 KB
/
AnimePinCurveText.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>AnimePinCurveTextSample</title>
<script src="https://resource.mapray.com/mapray-js/v0.9.5/mapray.min.js"></script>
<link rel="stylesheet" href="https://resource.mapray.com/styles/v1/mapray.css">
<script src="AnimePinCurveText.js"></script>
<script src="CosCurveText.js"></script>
<script src="CheckInputKeyAndMouse.js"></script>
<style>
html, body {
height: 100%;
margin: 0;
}
div#mapray-container {
display: flex;
position: relative;
height: 100%;
}
#tools {
position: fixed;
font-family: monospace;
bottom: 50px;
left: 10px;
background: black;
color: white;
padding: 10px;
}
</style>
</head>
<body onload="new AnimePinCurveText('mapray-container');">
<div id="mapray-container"></div>
<div id="tools">Click mouse to start animation.</div>
</body>
</html>