-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbezierCurve.html
More file actions
30 lines (30 loc) · 888 Bytes
/
bezierCurve.html
File metadata and controls
30 lines (30 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bezier Curve</title>
<style>
*
{
box-sizing: border-box;
padding: 0;
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<canvas id="myCanvas"></canvas>
<!-- <svg height="1500" width="1500">
<path d="M 50,50 C 50,550 750,550 750,150" style="fill: none; stroke: #f99;"></path>
</svg> -->
<h1 style="position: absolute; color: #fff; top: 0; left: 0;"></h1>
</body>
<script src="bezierCurve.js"></script>
<!-- <script defer>
const properties = new svgPathProperties.svgPathProperties("M0,100 Q50,-50 100,100 T200,100");
console.log(properties)
</script> -->
</html>