button
This commit is contained in:
parent
e3d07a3c4e
commit
c4de1e375a
|
@ -33,6 +33,12 @@ canvas {
|
||||||
/* height: 100vh; */
|
/* height: 100vh; */
|
||||||
background-color: rgb(189, 189, 189);
|
background-color: rgb(189, 189, 189);
|
||||||
}
|
}
|
||||||
|
.button{
|
||||||
|
display:block;
|
||||||
|
position: absolute;
|
||||||
|
right: 20px;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.controls{
|
.controls{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<title>Document</title>
|
<title>Document</title>
|
||||||
<link rel="stylesheet" href="./css/styles.css">
|
<link rel="stylesheet" href="./css/styles.css">
|
||||||
</head>
|
</head>
|
||||||
<body style="margin:0;" onclick="manualToggleSettings()">
|
<body style="margin:0;" >
|
||||||
<canvas id="myCanvas"
|
<canvas id="myCanvas"
|
||||||
style="display: block;box-sizing: border-box;" ></canvas>
|
style="display: block;box-sizing: border-box;" ></canvas>
|
||||||
<div id="toolbar">
|
<div id="toolbar">
|
||||||
|
@ -33,6 +33,9 @@
|
||||||
<button onclick="ForwardFrame()">></button>
|
<button onclick="ForwardFrame()">></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<button onclick="manualToggleSettings()" class="button">Show/hide</button>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
<script src="./js/helper.js" type="text/javascript"></script>
|
<script src="./js/helper.js" type="text/javascript"></script>
|
||||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||||
|
|
Loading…
Reference in New Issue