41 lines
1.0 KiB
HTML
41 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Shapes</title>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
position: relative;
|
|
margin: 0;
|
|
}
|
|
|
|
spatial-geometry {
|
|
background: rgb(187, 178, 178);
|
|
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
|
|
}
|
|
|
|
spatial-geometry:state(moving) {
|
|
scale: 1.05;
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<spatial-geometry x="100" y="100" width="50" height="50"></spatial-geometry>
|
|
<spatial-geometry x="100" y="200" width="50" height="50"></spatial-geometry>
|
|
<spatial-geometry x="100" y="300" width="50" height="50"></spatial-geometry>
|
|
|
|
<script type="module">
|
|
import { SpatialGeometry } from '../src/canvas/spatial-geometry.ts';
|
|
|
|
SpatialGeometry.register();
|
|
</script>
|
|
</body>
|
|
</html>
|