-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathep.html
31 lines (31 loc) · 784 Bytes
/
ep.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
<html>
<head>
<title>Electropaint/JS</title>
<style>
body {
margin: 0;
background-color: black;
overflow: hidden;
}
.camera {
pointer-events: none;
-webkit-transform: perspective(1000) rotateX(45deg);
-webkit-transform-style: preserve-3d;
position: absolute;
width: 100%;
height: 100%;
top: 25%;
}
.wing {
-webkit-transform-style: preserve-3d;
position: absolute;
left: 50%; top: 50%; width: 5vmin; height: 5vmin;
border: 1px solid white;
}
</style>
</head>
<body>
<a href="https://github.com/iamralpht/elektropaintjs"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png" alt="Fork me on GitHub"></a>
<script src="ep.js"></script>
</body>
</html>