Spinners using Font Icons
How do I make an spinners using font icons?
The icon font was generated by http://icomoon.io/. What is a spinners using font icons? How do you make a spinners using font icons? This script and codes were developed by Keyamoon on 25 January 2023, Wednesday.
Spinners using Font Icons - Script Codes HTML Codes
<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Spinners using Font Icons</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ @font-face { font-family: 'icomoon'; src:url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.eot?-9haulc'); src:url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.eot?#iefix-9haulc') format('embedded-opentype'), url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.woff?-9haulc') format('woff'), url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.ttf?-9haulc') format('truetype'), url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.svg?-9haulc#icomoon') format('svg'); font-weight: normal; font-style: normal;
}
[class^="icon-"], [class*=" icon-"] { font-family: 'icomoon'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.icon-spinner:before { content: "\e000";
}
.icon-spinner-2:before { content: "\e001";
}
.icon-spinner-3:before { content: "\e002";
}
.icon-spinner-4:before { content: "\e003";
}
.icon-spinner-5:before { content: "\e004";
}
.icon-spinner-6:before { content: "\e005";
}
.icon-spinner-7:before { content: "\e006";
}
@keyframes anim-rotate { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); }
}
.spinner { display: inline-block; font-size:4em; height: 1em; line-height: 1; margin: .5em; animation: anim-rotate 2s infinite linear; color: #fff; text-shadow: 0 0 .25em rgba(255,255,255, .3);
}
.spinner--steps { animation: anim-rotate 1s infinite steps(8);
}
.spinner--steps2 { animation: anim-rotate 1s infinite steps(12);
}
body { font-family: sans-serif; color: #ccc; line-height: 1.5; font-size: 1em; background: #181818;
}
.talign-center { text-align: center;
}
a, a:visited { text-decoration: none; color: #444; text-shadow: 0 1px 2px rgba(0,0,0, .3); transition: color .3s;
}
a:hover, a:active { color: #ccc;
}
footer { margin-top: 2em;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <section class="talign-center"> <div class="spinner spinner--steps icon-spinner" aria-hidden="true"></div> <div class="spinner icon-spinner-2" aria-hidden="true"></div> <div class="spinner icon-spinner-3" aria-hidden="true"></div> <div class="spinner icon-spinner-4" aria-hidden="true"></div> <div class="spinner icon-spinner-5" aria-hidden="true"></div> <div class="spinner icon-spinner-6" aria-hidden="true"></div>
<div class="spinner spinner--steps2 icon-spinner-7" aria-hidden="true"></div>
</section>
<footer class="talign-center"> <p><a href="https://icomoon.io">IcoMoon.io</a></p>
</footer>
</body>
</html>
Spinners using Font Icons - Script Codes CSS Codes
@font-face { font-family: 'icomoon'; src:url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.eot?-9haulc'); src:url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.eot?#iefix-9haulc') format('embedded-opentype'), url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.woff?-9haulc') format('woff'), url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.ttf?-9haulc') format('truetype'), url('https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.svg?-9haulc#icomoon') format('svg'); font-weight: normal; font-style: normal;
}
[class^="icon-"], [class*=" icon-"] { font-family: 'icomoon'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.icon-spinner:before { content: "\e000";
}
.icon-spinner-2:before { content: "\e001";
}
.icon-spinner-3:before { content: "\e002";
}
.icon-spinner-4:before { content: "\e003";
}
.icon-spinner-5:before { content: "\e004";
}
.icon-spinner-6:before { content: "\e005";
}
.icon-spinner-7:before { content: "\e006";
}
@keyframes anim-rotate { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); }
}
.spinner { display: inline-block; font-size:4em; height: 1em; line-height: 1; margin: .5em; animation: anim-rotate 2s infinite linear; color: #fff; text-shadow: 0 0 .25em rgba(255,255,255, .3);
}
.spinner--steps { animation: anim-rotate 1s infinite steps(8);
}
.spinner--steps2 { animation: anim-rotate 1s infinite steps(12);
}
body { font-family: sans-serif; color: #ccc; line-height: 1.5; font-size: 1em; background: #181818;
}
.talign-center { text-align: center;
}
a, a:visited { text-decoration: none; color: #444; text-shadow: 0 1px 2px rgba(0,0,0, .3); transition: color .3s;
}
a:hover, a:active { color: #ccc;
}
footer { margin-top: 2em;
}

Developer | Keyamoon |
Username | Keyamoon |
Uploaded | January 25, 2023 |
Rating | 4.5 |
Size | 3,007 Kb |
Views | 4,046 |
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!
Name | Size |
A multicolor icon made by stacking font glyphs | 3,028 Kb |
Subpixel VS Grayscale anti-aliasing | 2,714 Kb |
Inline SVGs and CSS Vars | 2,021 Kb |
Low Carb VS Low Fat | 1,853 Kb |
Inline SVG example | 2,026 Kb |
Header Line | 3,696 Kb |
A Pen by Keyamoon | 3,453 Kb |
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!
Name | Username | Size |
Sticky notes with CSS3 | HaiNguyen007 | 2,146 Kb |
Improved Page Flipping Effect | Usaphp | 5,201 Kb |
Material design buttons | Fischaela | 4,381 Kb |
Shape Outside - Polygon | Stacy | 3,954 Kb |
Canvas snow | Win7killer | 2,572 Kb |
Toggle menu | Seyedi | 2,279 Kb |
Toggle Time | Petebot | 5,345 Kb |
Ball Physics | Getsetbro | 3,149 Kb |
Materializecss input form | Jasonchan | 1,443 Kb |
Clock Face Idea | Chrisburnell | 3,196 Kb |
Surf anonymously, prevent hackers from acquiring your IP address, send anonymous email, and encrypt your Internet connection. High speed, ultra secure, and easy to use. Instant setup. Hide Your IP Now!