-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (58 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>cch</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:800" rel="stylesheet" type="text/css">
<link href="css/demo.css" rel="stylesheet" type="text/css">
<link href="css/colorbox.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/shine.min.js"></script>
<script type="text/javascript" src="js/jquery.konami.min.js"></script>
<script type="text/javascript" src="js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="js/konami.js"></script>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0px;
}
body {
transform: perspective(1400px) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform-style: preserve-3d;
background-color: transparent;
}
</style>
</head>
<body>
<h1 id="headline" class="demo-text">chowchinho</h1>
<p class="medium">Hello World.</p>
<p class="email"><a href="mailto:[email protected]">[email protected]</a>
</p>
<script type="text/javascript">
// use new shinejs.Shine(...) if Shine is already defined somewhere else
// var shine = new shinejs.Shine(document.getElementById('headline'));
var shine = new Shine(document.getElementById('headline'));
function handleMouseMove(event) {
shine.light.position.x = event.clientX;
shine.light.position.y = event.clientY;
shine.draw();
}
window.addEventListener('mousemove', handleMouseMove, false);
</script>
<div style="display:none">
<ul id="inline_content" style="padding:10px; background:#fff;">
<li><strong>The Konami List</strong>
</li>
<li><a href="http://cch.asuscomm.com:8081" target="_blank">Download Manager</a>
</li>
<li><a href="http://cch.asuscomm.com:8902/tv.mp4" target="_blank">Ace Stream</a>
</li>
<li><a href="https://cch.asuscomm.com/" target="_blank">Acess Home - AiCloud</a>
</li>
<li><a href="https://rdp.chowchinho.com/" target="_blank">Remote Desktop</a>
</li>
</ul>
</div>
</body>
</html>