-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (115 loc) · 4.39 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="google-site-verification" content="TDSFT_93qkfIT_hfc74IbTbhgkCkK67k6CJB9mWkyog" />
<meta name="Description" content="Portfolio containing my portfolio of achievements, games, website, research and misc work">
<meta name="Keywords" content="portfolio, resume, showcase, game, mobile, web, research, electronics, robotics, code, program">
<meta name="robots" content="index, follow">
<meta name="language" content="english">
<link rel="shortcut icon" href="images/favicon.ico">
<title>Samuel Leong Chee Weng's Portfolio</title>
<link href="index.css" rel="stylesheet" type="text/css">
<script src="index.lib.js"></script>
<script src="index.js"></script>
<noscript>
<style>
#noScriptShow{
display:inline-block;
height:100%;
width:100%;
position:fixed;
top:0;
bottom:0;
background:#066;
text-align:center;
z-index:2147483640; /* no mobile takes precedence */
}
#noScriptCircle{
width:300px;
height:300px;
padding:10px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin:auto;
border-radius:1000px;
background:#EEE;
color:#066;
text-align:center;
}
#noScriptCircle div{
width:200px;
height:200px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin:auto;
}
#noScriptCircle h1{
font-size:40px;
margin-top:20px;
margin-bottom:5px;
}
</style>
</noscript>
</head>
<body>
<div id="mainCircleHome" class="circle circle-height-none disableSelect" switch-var="width-840">
<span class="" id="mainCircleContent">
<h1>Welcome</h1>
<p>My name is Samuel Leong Chee Weng, and this is my website.</p>
</span>
</div>
<!--Navigation-->
<div id="navListHome" class="disableSelect">
<ul>
<a href="about/index.html"><li class="navHome"><span class="center">About Me</span></li></a>
<a href="games/index.html"><li class="navHome"><span class="center">Games</span></li></a>
<a href="projects/index.html"><li class="navHome"><span class="center">Research</span></li></a>
<a href="web/index.html"><li class="navHome"><span class="center">Web</span></li></a>
<a href="art/index.html"><li class="navHome"><span class="center">Art</span></li></a>
<a href="https://github.com/Samleo8" target="_blank" rel="noreferrer">
<li class="navHome github"><span class="center">Github</span></li>
</a>
</ul>
</div>
<!--Options-->
<div id="optionsCircle" class="circle circle-height disableSelect" onmouseover="optionsHover(this)" onmouseout="optionsUnhover(this)" onclick="optionsClick(this)">
<span class="" id="optionsCircleContent">
<h1>Options</h1>
</span>
</div>
<!--Options Box-->
<div id="optionsBox" class="invertedColor disableSelect">
<div id="optionsBoxHeader">
<div class="optionsTitle"><h1>Options</h1></div>
<div class="optionsIconsHolder">
<div class="optionsIcons"><span class="icon-home"></span></div>
<div class="optionsIcons"><span class="icon-reset"></span></div>
</div>
</div>
<hr>
<div id="optionsBoxContent">
<div id="optionsMenuHide" onClick="toggleOptions('menuHide',this)" class="options-btn unchecked">Show Menu at Start</div>
<div id="optionsMenuType" onClick="toggleOptions('menuTypeToggle',this)" class="options-btn unchecked disabled">Tab-Style Menu</div>
<div class="options-btn" id="closeOptionsBtn" onClick="closeOptions()">Close and Save</div>
<div id="optionsBoxHide" onClick="toggleOptions('boxHide',this)" class="options-btn unchecked">Hide options on launch</div>
</div>
</div>
<!--Error Circles--->
<div id="noScriptShow">
<div id="noScriptCircle" class="circle">
<div>
<h1>Oops.</h1>
<p>This website will not work without JavaScript enabled.</p>
<p>Please enable JavaScript in your browser.</p>
</div>
</div>
</div>
</body>
</html>