Start rearchitecting to have multiple subprojects
This commit is contained in:
parent
7431483bd0
commit
df621db3a2
@ -3,11 +3,12 @@
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Spazer</title>
|
||||
<script type="module" src="app.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Spazer</h1>
|
||||
<div id="mainContainer"></div>
|
||||
<ul>
|
||||
<li> <a href="./konva-ball/index.html">Konva-ball</a>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
@ -27,7 +27,7 @@ const circle = new Konva.Circle({
|
||||
x: stage.width() /2,
|
||||
y: stage.height() / 2,
|
||||
radius: 10,
|
||||
fill: "red",
|
||||
fill: "blue",
|
||||
stroke: "black",
|
||||
strokeWidth: 2,
|
||||
});
|
13
src/konva-ball/index.html
Normal file
13
src/konva-ball/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Konva-Ball</title>
|
||||
<script type="module" src="app.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Konva-Ball</h1>
|
||||
<div id="mainContainer"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user