-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (126 loc) · 5.5 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimal-ui">
<meta name="description" content="Deepak PK Portfolio">
<meta name="author" content="Deepak PK">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<link rel="shortcut icon" type="image/png" href="images/fav_icon.png"/>
<script type="text/javascript" src="http://www.skypeassets.com/i/scom/js/skype-uri.js"></script>
<title>Deepak PK - Roku/Android Developer</title>
<style>
.canvasFullWindow{
position: absolute;
background-color: #000000;
top: 0px;
left: 0px;
}
</style>
<!--[if lt IE 9]><script type="text/javascript" src="excanvas.js"></script><![endif]-->
<script src="js/tagcanvas.min.js" type="text/javascript"></script>
<script>
var canvas;
function init() {
canvas = document.getElementById("myCanvas");
// Canvas goes full screen
canvas.className = "canvasFullWindow";
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
try {
TagCanvas.Start('myCanvas', 'tags', {
outlineMethod: "none",
reverse: true,
dragControl: true,
depth: 0.8,
maxSpeed: 0.05,
imageScale: 1
});
} catch (e) {
// something went wrong, hide the canvas container
document.getElementById('myCanvasContainer').style.display = 'none';
}
}
window.onload = init;
</script>
</head>
<body style="background: #000">
<div id="myCanvasContainer">
<canvas id="myCanvas">
<p>Anything in here will be replaced on browsers that support the canvas element</p>
</canvas>
</div>
<div id="tags">
<ul>
<li>
<a href="https://www.facebook.com/deepak.pk.9" target="_blank">
<img src="images/fb.png" alt="Facebook" height="64" width="64">
</a>
</li>
<li>
<a href="https://twitter.com/deepak_pk_009" target="_blank">
<img src="images/tw.png" alt="Twitter" height="64" width="64">
</a>
</li>
<li>
<a href="http://www.linkedin.com/pub/deepak-pk/60/5a1/652" target="_blank">
<img src="images/link.png" alt="Linkedin" height="64" width="64">
</a>
</li>
<li>
<a href="http://sourceforge.net/u/deepakpk/profile/" target="_blank">
<img src="images/sf.png" alt="SourceForge" height="64" width="64">
</a>
</li>
<li>
<a href="https://play.google.com/store/apps/developer?id=Deepak+PK&hl=en" target="_blank">
<img src="images/play.png" alt="Google Play" height="64" width="64">
</a>
</li>
<li>
<a href="https://medium.com/@deepakpk" target="_blank">
<img src="images/medium.png" alt="Medium" height="64" width="64">
</a>
</li>
<li>
<a href="mailto:[email protected]?Subject=Hello" target="_top">
<img src="images/email.png" alt="Mail" height="64" width="64">
</a>
</li>
<li>
<a href="https://github.com/deepakpk009" target="_blank">
<img src="images/github.png" alt="Github" height="64" width="64">
</a>
</li>
<li>
<a href="https://stackoverflow.com/users/7390387/deepak-pk" target="_blank">
<img src="images/stack.png" alt="Stackoverflow" height="64" width="64">
</a>
</li>
<li>
<a href="https://www.instagram.com/deepakpk009/" target="_blank">
<img src="images/insta.png" alt="Instagram" height="64" width="64">
</a>
</li>
<li>
<a href="https://www.amazon.com/s?rh=p_4%3Adeepakpk" target="_blank">
<img src="images/amazon.png" alt="Amazon Apps" height="64" width="64">
</a>
</li>
<li>
<div id="SkypeButton_Call_deepakpk009_1">
<script type="text/javascript">
Skype.ui({
"name": "chat",
"element": "SkypeButton_Call_deepakpk009_1",
"participants": ["deepakpk009"],
"imageSize": 32
});
</script>
</div>
</li>
</ul>
</div>
</body>
</html>