Extremely simple loading animation

Developer
Size
1,804 Kb
Views
46,552

How do I make an extremely simple loading animation?

A very simple "loading ..." animation in 5 lines of JavaScript. What is a extremely simple loading animation? How do you make a extremely simple loading animation? This script and codes were developed by James Barnett on 11 August 2022, Thursday.

Extremely simple loading animation Previews

Extremely simple loading animation - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Extremely simple loading animation</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="loading">Loading Animation</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>

Extremely simple loading animation - Script Codes CSS Codes

body { /*background: #2d2d2f;*/
}
div { margin: 20px; }
.loading { font-size: 1.5em; font-family: Georgia; /*color: #f0f0f0;*/
}

Extremely simple loading animation - Script Codes JS Codes

i = 0;
setInterval(function() { i = ++i % 4; $(".loading").text("Loading Animation " + Array(i+1).join("."));
}, 800);
Extremely simple loading animation - Script Codes
Extremely simple loading animation - Script Codes
Home Page Home
Developer James Barnett
Username jamesbarnett
Uploaded August 11, 2022
Rating 3
Size 1,804 Kb
Views 46,552
Do you need developer help for Extremely simple loading animation?

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!

James Barnett (jamesbarnett) Script Codes
Create amazing Facebook ads 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!