-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (85 loc) · 3.3 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="https://www.jqueryscript.net/demo/Customizable-Interactive-Particles-Animation-with-jQuery-jParticle/jparticle.jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="index.css" rel="stylesheet" type="text/css">
</head><body>
<script>
$(document).ready(function() {
$("#particle").jParticle({
// number of particles
particlesNumber: 100,
// Distance where link is full opacity
linkDist: 50,
// Distance where particles start linking.
createLinkDist: 150,
// disable links between particles
disableLinks: false,
// disable mouse interaction
disableMouse: false,
// background color
background: '#c7c7c7',
// Particles and links color.
color: '#232323',
// container's width/height
width: null,
height: null,
// Links width in pixels
linksWidth: 1,
particle: {
// Particles color.
color: "white",
// min / max size
minSize: 2,
maxSize: 4,
// animation speed
speed: 60
}
});
});
</script>
<div class="cover">
<div class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-ex-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand brand-title" href="#" style="color: white"><span>Chars</span></a>
</div>
<div class="collapse navbar-collapse" id="navbar-ex-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active">
<a href="#" style="color: white">Home</a>
</li>
<li>
<a href="#" style="color: white">Contacts</a>
</li>
<li>
<a href="#" style="color: white">Portfolio<br></a>
</li>
</ul>
</div>
</div>
</div>
<div id="particle" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;"></div>
<div class="cover-image"></div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1 class="text-primary">Chars X Lab</h1>
<p>Developing Ideas<br></p>
<br>
<br>
<a class="btn btn-lg btn-default">Click me</a>
</div>
</div>
</div>
</div>
</body></html>