p5js/index.html

25 lines
679 B
HTML
Raw Normal View History

2022-12-07 12:42:16 +00:00
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>p5.js example</title>
2022-12-10 09:35:14 +00:00
<link rel="shortcut icon" href="data:" type="image/x-icon" />
2022-12-07 12:42:16 +00:00
<style>
2022-12-10 09:35:14 +00:00
* {
2022-12-07 12:42:16 +00:00
padding: 0;
margin: 0;
2022-12-10 09:35:14 +00:00
box-sizing: border-box;
background-color: gray;
2022-12-07 12:42:16 +00:00
}
</style>
<script src="p5/p5.min.js"></script>
<!-- <script src="p5/addons/p5.sound.js"></script> -->
2022-12-10 09:35:14 +00:00
<script src="sketch.js"></script>
2022-12-07 12:42:16 +00:00
</head>
<body>
<main></main>
</body>
</html>