CSS and HTML Loader progress bar

Developer
Size
2,021 Kb
Views
20,240

How do I make an css and html loader progress bar?

This is html and css loader. No images were used. Progress bar. What is a css and html loader progress bar? How do you make a css and html loader progress bar? This script and codes were developed by Jason Chan on 13 September 2022, Tuesday.

CSS and HTML Loader progress bar Previews

CSS and HTML Loader progress bar - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS and HTML Loader progress bar</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <h1 class="blink_me">Loading...</h1>
<div class="wrap">	<div class="prog-bar"></div>	</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

CSS and HTML Loader progress bar - Script Codes CSS Codes

body {	background: #303030;	font: 1.1em sans-serif;
}
.wrap {	box-sizing: border-box;	margin: 70px auto;	padding: 5px;	width: 600px;	border-radius: 10px;	background: #222;	box-shadow: inset 0 0 1px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.1);
}
.prog-bar {	height: 60px;	border-radius: 5px;	background: repeating-linear-gradient(-45deg, rgba(255,255,255,.1), rgba(255,255,255,0) 12px), linear-gradient(#F5A8A8, #F08080);	-webkit-animation-name: slide;	-webkit-animation-duration: 5s;
}
/*	Keyframes
------------------------------------------ */
@-webkit-keyframes slide {	0% { width: 0%;}	30%,	60% { width: 50%;}	70% { width: 80%;}	100% { width: 100%;}
}
.blink_me { color: white; text-align: center;
}

CSS and HTML Loader progress bar - Script Codes JS Codes

(function blink() { $('.blink_me').fadeOut(500).fadeIn(500, blink);
})();
CSS and HTML Loader progress bar - Script Codes
CSS and HTML Loader progress bar - Script Codes
Home Page Home
Developer Jason Chan
Username jasonchan
Uploaded September 13, 2022
Rating 3
Size 2,021 Kb
Views 20,240
Do you need developer help for CSS and HTML Loader progress bar?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Jason Chan (jasonchan) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!