You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
965 B
HTML
32 lines
965 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title></title>
|
|
<meta name="description" content="">
|
|
<script src="https://cdn.jsdelivr.net/npm/p5@1.1.9/lib/p5.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/5.1.3/pixi.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.min.js"></script>
|
|
<link rel="shortcut icon" type="image/x-icon" href="../P3.ico">
|
|
<style>
|
|
body{ background: url("../assets/grid.png");
|
|
background-size: 8%;
|
|
width: 100%;
|
|
height: 100vh;
|
|
animation: animation 20s linear infinite;}
|
|
|
|
@keyframes animation {
|
|
100%{
|
|
background-position:-3000px 0;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="../scripts/visions.js"></script>
|
|
<script src="sketch.js"></script>
|
|
</body>
|
|
</html> |