fonteditor/demo/fitContours.html
2019-10-24 23:04:23 +08:00

50 lines
1010 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>canvas读取图片</title>
<script src="../dep/jquery.min.js"></script>
<style>
body {
margin: 0;
padding: 0;
}
#points, #points-break {
position: absolute;
left: 0;
top: 0;
width: 800px;
height: 800px;
}
#points i,
#points-break i {
position: absolute;
width: 1px;
height: 1px;
background: #ddd;
}
#points-break i.break {
width: 2px;
height: 2px;
background: red;
}
#points-break i.mark {
width: 1px;
height: 1px;
background: green;
}
</style>
</head>
<body>
<div id="points" width="800" height="800"></div>
<canvas id="canvas" width="800" height="800"></canvas>
<div id="points-break"></div>
</body>
</html>