add initial findings
This commit is contained in:
16
c2014/pageDep/script/headsup.js
Normal file
16
c2014/pageDep/script/headsup.js
Normal file
@@ -0,0 +1,16 @@
|
||||
/* Coded by Garrett Mills
|
||||
* http://glmills.gq/
|
||||
* Last Edited on 16 August 11:00
|
||||
* This code is licensed under Creative Commons Attribution-ShareAlike 4.0 International License
|
||||
* http://glmills.gq/mycode/licenses/CCA-SA4.html
|
||||
*/
|
||||
document.write('\
|
||||
\
|
||||
<script src="/lib/jsurl/src/getvars.js"></script>\
|
||||
<script src="/lib/jsmobile/src/check.js"></script>\
|
||||
<title>Garrett Mills</title>\
|
||||
<script src="/pageDep/script/pageNavi.js"></script>\
|
||||
<script src="/pageDep/script/socialNavi.js"></script>\
|
||||
<link rel="stylesheet" type="text/css" href="/pageDep/styles/main.css"/>\
|
||||
\
|
||||
');
|
||||
27
c2014/pageDep/script/pageNavi.js
Normal file
27
c2014/pageDep/script/pageNavi.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/* Coded by Garrett Mills
|
||||
* http://glmills.gq/
|
||||
* Last Edited on 5 August 13:18
|
||||
* This code is licensed under Creative Commons Attribution-ShareAlike 4.0 International License
|
||||
* http://glmills.gq/mycode/licenses/CCA-SA4.html
|
||||
*/
|
||||
|
||||
//Navigation Functions
|
||||
function naviHome(){
|
||||
window.location = '/'
|
||||
}
|
||||
|
||||
function naviAbout(){
|
||||
window.location = '/about'
|
||||
}
|
||||
|
||||
function naviProjects(){
|
||||
window.location = '/projects'
|
||||
}
|
||||
|
||||
function naviMyCode(){
|
||||
window.location = '/mycode'
|
||||
}
|
||||
|
||||
function naviContact(){
|
||||
window.location = "/contact"
|
||||
}
|
||||
29
c2014/pageDep/script/setup.js
Normal file
29
c2014/pageDep/script/setup.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/* Coded by Garrett Mills
|
||||
* http://glmills.gq/
|
||||
* Last Edited on 5 August 13:18
|
||||
* This code is licensed under Creative Commons Attribution-ShareAlike 4.0 International License
|
||||
* http://glmills.gq/mycode/licenses/CCA-SA4.html
|
||||
*/
|
||||
|
||||
//DO SETUP
|
||||
document.write('\
|
||||
<!--HeaderBar-->\
|
||||
<div class="mainPanel">\
|
||||
<h1>Garrett Mills</h1>\
|
||||
<ul class="naviPanel">\
|
||||
<li onclick="naviHome()">Home</li>\
|
||||
<li onclick="naviAbout()">About</li>\
|
||||
<li onclick="naviContact()">Contact Info</li>\
|
||||
<li onclick="naviProjects()">Projects</li>\
|
||||
<li onclick="naviMyCode()">My Code</li>\
|
||||
</ul>\
|
||||
<ul class="socialPanel">\
|
||||
<li><img onclick="socialGithub()" src="/pageDep/images/social_icons/github32.png"/></li>\
|
||||
<li><img onclick="socialGoogleplus()" src="/pageDep/images/social_icons/googleplus32.png"/></li>\
|
||||
<li><img onclick="socialPinterest()" src="/pageDep/images/social_icons/pinterest32.png"/></li>\
|
||||
<li><img onclick="socialYoutube()" src="/pageDep/images/social_icons/youtube32.png"/></li>\
|
||||
</ul>\
|
||||
</div>\
|
||||
');
|
||||
|
||||
// alert("Attention: This website is still under construction and may not be complete. Sorry. --Garrett")
|
||||
22
c2014/pageDep/script/socialNavi.js
Normal file
22
c2014/pageDep/script/socialNavi.js
Normal file
@@ -0,0 +1,22 @@
|
||||
/* Coded by Garrett Mills
|
||||
* http://glmills.gq/
|
||||
* Last Edited on 5 August 13:18
|
||||
* This code is licensed under Creative Commons Attribution-ShareAlike 4.0 International License
|
||||
* http://glmills.gq/mycode/licenses/CCA-SA4.html
|
||||
*/
|
||||
|
||||
function socialGithub(){
|
||||
window.location = "https://github.com/glmills"
|
||||
}
|
||||
|
||||
function socialGoogleplus(){
|
||||
window.location = "https://plus.google.com/u/0/+Garrettmills1999"
|
||||
}
|
||||
|
||||
function socialPinterest(){
|
||||
window.location = "https://www.pinterest.com/millsdti/"
|
||||
}
|
||||
|
||||
function socialYoutube(){
|
||||
window.location = "https://www.youtube.com/channel/UCvvwnRXH3dmfadIty5PVOoA"
|
||||
}
|
||||
Reference in New Issue
Block a user