-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (34 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Adriano Resende</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:900|Open+Sans:300" rel="stylesheet">
<link href="css/normalize.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="app">
<div class="hello-dribbble">
<div class="hello-dribbble-motion">
<div class="revealer-block word-hello">
<div class="reveal-block"></div>
<h1>Hello</h1>
</div>
<div class="revealer-block word-dribbble">
<div class="reveal-block"></div>
<h2>dribbble!</h2>
</div>
<h3>Thanks @mppagano ;)</h3>
</div>
</div>
</div>
<script>
(function() {
setTimeout( function () {
document.getElementsByClassName('hello-dribbble')[0].classList.add("show")
}, 300)
})();
</script>
</body>
</html>