folk-canvas/website/canvas/sticky-html-arrow.html

38 lines
983 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arrows</title>
<style>
html {
height: 100%;
}
body {
min-height: 100%;
position: relative;
margin: 0;
}
folk-shape {
border: 1px solid black;
border-radius: 3px;
background-color: rgba(119, 119, 119, 1);
}
</style>
</head>
<body>
<folk-shape id="box1" x="50" y="100" width="50" height="50"></folk-shape>
<folk-shape id="box2" x="150" y="300" width="50" height="50"></folk-shape>
<folk-shape id="box3" x="200" y="200" width="50" height="50"></folk-shape>
<folk-arrow source="#box1" target="#box2"></folk-arrow>
<script type="module">
import '@labs/standalone/folk-shape.ts';
import '@labs/standalone/folk-arrow.ts';
import '@lib/iframe-script.ts';
</script>
</body>
</html>