Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ <h6>Select Option</h6>
<script type="text/javascript">
var intro = {
opening1: "Welcome to my site...",
opening2: "I'm not really sure why you're here but...",
opening2: "It's not ready yet!",
opening3: "Please contact me below :D"
}
var menu = {
header: "<span class='menuHeader'>Select an option from the menu:</span>",
Expand Down Expand Up @@ -76,10 +77,11 @@ <h6>Select Option</h6>
strings: arr,
speed: 100,
startDelay: 500,
autoStart: false,
callback: function(){
autoStart: false
/*callback: function(){
menuType(menu.header, menu.about, menu.skills, menu.portfolio, menu.stats, menu.easter)
}
*/
});
}
function randomizeString(id) {
Expand All @@ -92,7 +94,7 @@ <h6>Select Option</h6>
}
};
$(document).ready(function(){
textType(intro.opening1, intro.opening2);
textType(intro.opening1, intro.opening2, intro.opening3);
randomizeString("title");
document.onkeydown = menuNav;

Expand Down