Skip to content
Merged
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
11 changes: 9 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
Expand All @@ -25,6 +25,8 @@
}
body {
opacity: 0;
}
body.loading {
transition: opacity 0.1s linear;
}
body.loaded {
Expand Down Expand Up @@ -89,7 +91,7 @@

</head>

<body id="body">
<body id="body" class="loading">
<div id="header">

<img id="logo" src="node-forward.png">
Expand Down Expand Up @@ -139,6 +141,11 @@ <h3 class="involved">If you're a JavaScript programmer there are ways that you c
// fade in ;D
document.getElementById('body').classList.add('loaded')

setTimeout(function(){
document.getElementById('body').classList.remove('loading')
}, 100)


// get awesome splash texts of awesomeness.
// using superagent because it's node-like and cool.

Expand Down