-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.18 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
<!DOCTYPE html>
<!-- Reddit Button imitation -->
<!-- Developed by Richie Zhang, design inspired by /r/TheButton on Reddit. -->
<html>
<head>
<title>Imitation Reddit Button</title>
<style>
body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
<noscript>
<style>
.reddit_button {
display: none !important;
}
</style>
</noscript>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Project static files -->
<link rel="stylesheet" href="./reddit_button.css" />
<script src="./reddit_button.js"></script>
</head>
<body>
<br /><br /><br /><br /><br /><br /><br /><br /><br />
<div id="main-reddit_button" class="reddit_button">
<div id="main-reddit_button_cover" class="reddit_button_cover" onclick="reddit_button_unlock('main')"><p>Click Here...</p></div>
<div id="main-reddit_button_active" class="reddit_button_active" title="Press the button :P" onclick="pressLog()"></div>
</div>
<noscript><p style="text-align: center;">Please Enable JavaScript</p></noscript>
<br /><br />
<div id="button_msg"></div>
</body>
</html>