-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocadingpage.html
32 lines (26 loc) · 893 Bytes
/
locadingpage.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="public/css/pageloader.css">
</head>
<body>
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<div class="content">
<h1>Some Pixabay Pictures</h1>
<img src="https://pixabay.com/static/uploads/photo/2014/11/13/23/34/london-530055_960_720.jpg"/>
<img src="https://pixabay.com/static/uploads/photo/2016/03/16/00/52/koala-1259681_960_720.jpg"/>
<img src="https://pixabay.com/static/uploads/photo/2016/03/16/00/52/koala-1259681_960_720.jpg"/>
</div>
<script type="text/javascript" src="public/bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript">
setTimeout(function(){
$('body').addClass('loaded');
}, 3);
console.log("hi!");
</script>
</body>
</html>