-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
49 lines (41 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Title This Page :)</title>
<!-- jQuery: Grab Google CDN jQuery. fall back to local if necessary -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>!window.jQuery && document.write('<script src="jquery-1.8.0.min.js"><\/script>')</script>
<!-- The raptorize file -->
<script src="jquery.raptorize.js"></script>
<!-- For the button version -->
<script type="text/javascript">
$(window).load(function() {
$('.button').raptorize();
});
</script>
<!-- For the Konami Code version -->
<script type="text/javascript">
$(window).load(function() {
$('.button').raptorize({
'enterOn' : 'konami-code'
});
});
</script>
<!-- For the Timer version -->
<!-- <script type="text/javascript">
$(window).load(function() {
$('.button').raptorize({
'enterOn' : 'timer',
'delayTime' : 2000
});
});
</script>
-->
</head>
<body>
<h1>Hey There!</h1>
<p><a href="#" class="button">Click me</a> to activate the Raptorize plugin.</p>
<p>You can also use the Konami-Code (on your keyboard type ↑ ↑ ↓ ↓ ← → ← → B A)</p>
</body>
</html>