32 lines
719 B
HTML
32 lines
719 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<style>
|
|
#loading-img {
|
|
background: url(http://preloaders.net/preloaders/360/Velocity.gif) center center no-repeat;
|
|
height: 100%;
|
|
z-index: 20;
|
|
}
|
|
|
|
.overlay {
|
|
background: #e9e9e9;
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="overlay">
|
|
<div id="loading-img"></div>
|
|
</div>
|
|
</body>
|
|
</html> |