-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
48 lines (47 loc) · 1.45 KB
/
index.php
File metadata and controls
48 lines (47 loc) · 1.45 KB
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
<?php
/**
* This is a jQuery Matrix Rain plugin.
*/
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>ALXS Matrix Rain (jQuery Plugin)</title>
<meta http-equiv="Content-Type" content="txt/html; charset=utf-8" />
<link rel="stylesheet" media="all" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<header id="site-header">
<a id="brand" href="/">jQuery Matrix Rain</a>
</header>
<section class="block-alxs-matrix-alxs-matrix-rain">
<canvas id="matrix-rain">Sorry, your browser is not supported</canvas>
<div id="hide-wrapper">
<a href="#main" id="hide-matrix"><i class="fa fa-2x fa-hand-o-down"></i> Read More</a>
</div>
</section>
<main id="main">
</main>
<footer id="site-footer">
</footer>
<div id="debug-tools">
<a href="log.settings" alt="Log Settings" id="log-settings">Log Settings</a>
<a href="log.variables" alt="Log Variables" id="log-globals">Log Vars</a>
</div>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="js/jquery.requestAnimationFrame.min.js"></script>
<script src="js/jquery.matrixrain.js" ></script>
<script>
$(document).ready(function() {
$('#matrix-rain').matrixrain({
backgroundColor: '#000',
textColor: '#eee',
colWidth: 25,
velMin: 1,
velMax: 4
});
});
</script>
</body>
</html>