38 lines
706 B
HTML
38 lines
706 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>p5.js liberay</title>
|
|
</head>
|
|
<body>
|
|
<h1>p5.js liberay by me</h1>
|
|
<div style="width: 470px;">
|
|
<h2 >AbstractAlgorithms</h2>
|
|
<div id="liberay">
|
|
<iframe src="http://127.0.0.1:5500/liberay.html?sketches=Cubes.js,calmCircles.js,labyrinth.js,AbstractAlgorithm.js&size=200" frameborder="0"></iframe>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script type="module" src="index.js"></script>
|
|
<style>
|
|
h1, h2 {
|
|
text-align: center;
|
|
font-family: cursive, serif;
|
|
}
|
|
body {
|
|
background-color: beige;
|
|
}
|
|
|
|
#liberay {
|
|
height: 600px;
|
|
width: 600px;
|
|
}
|
|
|
|
iframe {
|
|
height: 100%;
|
|
width: 100%;
|
|
border: none;
|
|
margin: 0;
|
|
}
|
|
|
|
</style>
|
|
</html> |