21 lines
613 B
HTML
21 lines
613 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>List creation</title>
|
|
<script src="../../konva.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>List creation</h1>
|
|
<p>This animation shows how we implement and create a list. Click the "next step" button to run the animation. </p>
|
|
|
|
<div id="container"></div>
|
|
<script src="creation.js"></script>
|
|
|
|
<!-- we must include the javascript first, and then have this button definition which calls a function defined in the javascript -->
|
|
<button onclick="nextstep()" style="position: absolute; top: 110px; left: 10px;">next step</button>
|
|
|
|
</body>
|
|
</html>
|