Loading Dots CSS3 Animation

Size
1,671 Kb
Views
20,240

How do I make an loading dots css3 animation?

Just a quick animation to make the loading dot dot dot that we're all so fond of, using css animations. No need for JS or JQuery plugins, etc.. What is a loading dots css3 animation? How do you make a loading dots css3 animation? This script and codes were developed by Douglas Glover on 17 October 2022, Monday.

Loading Dots CSS3 Animation Previews

Loading Dots CSS3 Animation - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Loading Dots CSS3 Animation</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <p>Loading</p><p class="dotdotdot">...</p>
</body>
</html>

Loading Dots CSS3 Animation - Script Codes CSS Codes

p{ font-family:"Gill Sans MT", "Arial", sans-serif; font-size:1.2em; float:left; padding:0; margin:0;
}
.dotdotdot{ overflow:hidden; /* Important - Hides the dots from view */
}
/* Loading ... Animation */
@keyframes loading
{
from {width:0px;}
to {width:13px;}
}
@-webkit-keyframes loading
{
from {width:0px;}
to {width:13px;}
}
.dotdotdot{ animation: loading 1s; -webkit-animation: loading 1s; animation-iteration-count:infinite; -webkit-animation-iteration-count:infinite;
}
Loading Dots CSS3 Animation - Script Codes
Loading Dots CSS3 Animation - Script Codes
Home Page Home
Developer Douglas Glover
Username DouglasGlover
Uploaded October 17, 2022
Rating 3
Size 1,671 Kb
Views 20,240
Do you need developer help for Loading Dots CSS3 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!

Douglas Glover (DouglasGlover) Script Codes
Create amazing video scripts 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!