DevPlatform
Home
Components
Search
Submit
Earn
Login
Sign Up Free
Circles - Preview | DevPlatform
DevPlatform
Categories
Accordion
Animation
Box Shadow
Button
Card
Footer
Form
Gallery
Hero Section
Inputs
Loader
Marquee
Modal
Modules
Navbar
Progress Bar
Radio Buttons
Search-Bar
Sections
Slider
Tab
Timeline
Toggle
Circles
rohitwushu
Jan 12, 2026
5
0
Share
Live Preview
Refresh
Live Editor
HTML
CSS
JS
HTML
CSS
JavaScript
1
<div class="ring-container"> <div class="ring"> </div> <div class="ring"> </div> <div class="ring"> </div> <div class="ring"> </div> </div>
1
body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #1b1b1b; } .ring-container { position: relative; width: 100px; height: 100px; } .ring { position: absolute; width: 100%; height: 100%; border: 3px solid #00ffea; border-radius: 50%; animation: pulse 2s infinite ease-in-out; opacity: 0; } .ring:nth-child(2) { animation-delay: 0.5s; border-color: #ff4d6d; } .ring:nth-child(3) { animation-delay: 1s; border-color: #ffc107; } .ring:nth-child(4) { animation-delay: 1.5s; border-color: #40c057; } @keyframes pulse { 0% { transform: scale(0.3); opacity: 0; } 50% { opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
1
Comments
0
Want to comment?
Please
login
or
sign up
to post comments.
No comments yet
Be the first to comment on this component!
Comments 0
Want to comment?
Please login or sign up to post comments.
No comments yet
Be the first to comment on this component!