forked from satu0king/PolynomialGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 964 Bytes
/
index.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
40
<meta name="viewport" content="user-scalable=no"/>
<html>
<body onload="setup()">
<script src="./code.js"></script>
<div >
<canvas id="plotArea" style="position: absolute; left: 0; top: 0; z-index: 0; width:100%;height:100%"></canvas>
</div>
<div class="icon" id="addPointer" style="right:20px;top:300px">A
</div>
<div class="icon" id="solveButton" style="right:20px;top:450px">S
</div>
<div class="icon" id="zoomin" style="right:20px;top:600px">+
</div>
<div class="icon" id="zoomout" style="right:20px;top:750px">-
</div>
</body>
</html>
<style>
.icon{
background-color: darkgreen;
border-radius: 50px;
height: 100px;
width: 100px;
position: fixed;
text-align: center;
font-size: 75px;
color:white;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor:default;
}
.icon:hover{
background-color: green;
}
</style>