56 lines
789 B
HTML
56 lines
789 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<style type='text/css'>
|
||
|
body{
|
||
|
font-family:sans-serif;
|
||
|
background: darkblue;
|
||
|
margin:0;
|
||
|
}
|
||
|
|
||
|
#svgCanvas{
|
||
|
width:100vw;
|
||
|
height:100vh;
|
||
|
}
|
||
|
#catNav{
|
||
|
position:absolute;
|
||
|
top:0;
|
||
|
left:0;
|
||
|
color:white;
|
||
|
}
|
||
|
#catNav ul{
|
||
|
list-style:none;
|
||
|
padding:10px;
|
||
|
}
|
||
|
#catNav li:hover{
|
||
|
cursor:pointer;
|
||
|
text-decoration:underline;
|
||
|
}
|
||
|
|
||
|
g{
|
||
|
cursor:grab;
|
||
|
}
|
||
|
|
||
|
g:active{
|
||
|
cursor:grabbing;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<nav id='catNav'>
|
||
|
</nav>
|
||
|
<svg
|
||
|
id='svgCanvas'
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
xmlns:ev="http://www.w3.org/2001/xml-events"
|
||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||
|
viewBox="0 0 1000 1000">
|
||
|
</svg>
|
||
|
|
||
|
|
||
|
<!-- <script src="svg-inject.min.js"></script> -->
|
||
|
<script src="textures.js"></script>
|
||
|
<script src="crel.min.js"></script>
|
||
|
<script src="coco.js"></script>
|
||
|
</body>
|
||
|
</html>
|