-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparticles.html
52 lines (47 loc) · 1.27 KB
/
particles.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
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Animated Background</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<div id="particles-js"></div>
<div class="content">
<h1>Meu Site com Animação de Fundo</h1>
<p>Bem-vindo ao meu site incrível com uma animação de fundo!</p>
</div>
<script>
// script.js
particlesJS("particles-js", {
particles: {
number: {
value: 100,
},
color: {
value: "#00ccff",
},
shape: {
type: "circle",
},
opacity: {
value: 0.6,
random: true,
},
size: {
value: 4,
},
line_linked: {
enable: false,
},
move: {
enable: true,
speed: 2,
},
},
});
</script>
</body>
</html>