DevPlatform
Home
Components
Search
Submit
Earn
Login
Sign Up Free
Animated Wifi Love - 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
Animated Wifi Love
rohit
Feb 13, 2026
12
0
Share
Live Preview
Refresh
Live Editor
HTML
CSS
JS
HTML
CSS
JavaScript
1
<div class="wifi"> <div class="arc arc1"></div> <div class="arc arc2"></div> <div class="arc arc3"></div> <div class="heart"></div> </div>
1
body { margin: 0; height: 100vh; background: #eae6c8; display: flex; justify-content: center; align-items: center; } /* Container */ .wifi { position: relative; width: 200px; height: 200px; } /* Arcs */ .arc { position: absolute; left: 50%; transform: translateX(-50%); border: 18px solid red; border-color: red transparent transparent transparent; border-radius: 50%; opacity: 0; animation: pulse 2s infinite; } .arc1 { width: 200px; height: 200px; top: 0; animation-delay: 0s; } .arc2 { width: 150px; height: 150px; top: 25px; animation-delay: 0.3s; } .arc3 { width: 100px; height: 100px; top: 50px; animation-delay: 0.6s; } /* Heart */ .heart { position: absolute; bottom: 10px; left: 50%; width: 30px; height: 30px; background: red; transform: translateX(-50%) rotate(-45deg); animation: heartbeat 1s infinite; } .heart::before, .heart::after { content: ""; position: absolute; width: 30px; height: 30px; background: red; border-radius: 50%; } .heart::before { top: -15px; left: 0; } .heart::after { left: 15px; top: 0; } /* Animations */ @keyframes pulse { 0% { opacity: 0.3; transform: translateX(-50%) scale(0.9); } 50% { opacity: 1; transform: translateX(-50%) scale(1); } 100% { opacity: 0.3; transform: translateX(-50%) scale(0.9); } } @keyframes heartbeat { 0%, 100% { transform: translateX(-50%) rotate(-45deg) scale(1); } 50% { transform: translateX(-50%) rotate(-45deg) scale(1.2); } }
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!