Skip to content

Instantly share code, notes, and snippets.

@Techgokul
Created June 10, 2018 05:38
Show Gist options
  • Save Techgokul/9fca06e5e7dabcf4d3e05f2c9bee89ab to your computer and use it in GitHub Desktop.
Save Techgokul/9fca06e5e7dabcf4d3e05f2c9bee89ab to your computer and use it in GitHub Desktop.
create a loader for your website using css and html
<html>
<head>
<title>Loader</title>
<meta name="viewport" content="width=device-width initial-scale=1">
<style>
.loader{
margin-left: 400px;
margin-top: 250px;
border: 16px solid #0058ff;
border-bottom: 16px solid #0058ff;
border-top: 16px solid white;
border-radius: 50%;
background-color: white;
width: 500px;
height: 500px;
-webkit-animation: spin 2s linear;
-webkit-animation-iteration-count: infinite;
animation: spin 2s linear;
animation-iteration-count: infinite;
animation-delay: 2s;
}
.para{
font-size: 20px;
font-family: cursive;
color: chocolate;
text-align: center;
width: 500px;
height: 50px;
margin-left: 400px;
}
@-webkit-keyframes spin{
0%{-webkit-transform:rotate(0deg);}
100%{-webkit-transform:rotate(360deg);}
}
@keyframes spin{
0%{transform: rotate(0deg);}
100%{transform: rotate(360deg);}
}
</style>
</head>
<body>
<div class="para" id="p">Please Wait For sometime</div>
<div class="loader" id="load" style="display: block"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment