-
Notifications
You must be signed in to change notification settings - Fork 6
/
julian-demo.surge.sh.html
46 lines (42 loc) · 1.14 KB
/
julian-demo.surge.sh.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<!-- saved from url=(0028)http://julian-demo.surge.sh/ -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, maximum-scale=1">
<style>
body{
margin:0;
padding:0;
}
canvas{
position:absolute;
width:100%;
height:400px;
}
</style>
<title></title>
</head>
<body>
<canvas width="2880" height="800" style="width: 1440px; height: 400px;"></canvas>
<script src="rhill-voronoi-core.min.js"></script>
<script src="delaunay.js"></script>
<script src="particles.js"></script>
<script>
Particles(document.querySelector('canvas'),{
edgeLightUpSpeed:0.002,
edgeFadeSpeed:0.001,
edgeLightUpBrightness:0.2,
eraseAlpha:0.5,
trailSize:25,
pulseChance:0.06,
maxPulsesPerSpawn:1,
maxPulses:10,
minVertexRadius:1,
minPulseSpeed:0.03/2.25,
pulseSpeedVariation:0.04/2.25,
vertexRadiusVariation:1,
spacing:80,
bg:[ 255,255,255 ],
fg:[ 128,198,255 ],
});
</script>
</body></html>