-
Notifications
You must be signed in to change notification settings - Fork 1
/
preloader.html
82 lines (68 loc) · 1.98 KB
/
preloader.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Fonts -->
<link href="css/animate.css" rel="stylesheet" />
<!-- css -->
<link href="color/default.css" rel="stylesheet">
<style>
#preloader {
background-color: #ffffff;
bottom: 0;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 99999;
text-align: center;
}
#load {
/* background-color: aquamarine;*/
z-index: 99999;
width: auto;
height: auto;
position: relative;
top: 20%;
border-radius: 0px;
}
@media (min-width: 1080px) {
#load img {
height: 500px;
width: 500px;
}
}
@media (max-width: 700px) {
#load img {
height: 300px;
width: 300px;
}
}
</style>
</head>
<body>
<!-- <div id="preloader">
<div id="load"><img class="wow fadeInDown" src="img/plismun21_notext.png" alt="PLISMUN"></div>
</div> -->
<!-- Core JavaScript Files -->
<!-- <script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/wow.min.js"></script> -->
<script type="text/javascript">
// (function ($) {
// new WOW().init();
// jQuery(window).load(function () {
// jQuery("#preloader").delay(400).fadeOut("medium");
// jQuery("#load").delay(400).fadeOut("medium");
// });
// }) (jQuery);
</script>
</body>
</html>