Home
About
Contact Us
Disclaimer
Privacy Policy
Terms and Conditions
INTERESTING Code
Home
HTML
CSS
JavaScript
Project
_HTML
_CSS
_JavaScript
About
Login
Home
CSS
CSS Creative Animation & Hover Efects
CSS Creative Animation & Hover Efects
INTERESTING Plus
July 20, 2022
Hovver Effects
HTML Code:
INTERESTING Code Plus
Copy Codes
CSS Code:
* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; overflow: hidden; background: #001f25; } .loader { position: relative; width: 300px; height: 300px; } .loader span { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: rotate(calc(36deg * var(--i))); } .loader span::before { content: ''; position: absolute; top: 0; left: 0; width: 25px; height: 25px; border-radius: 50%; background: transparent; border: 4px solid #00efff; box-sizing: border-box; box-shadow: 0 0 20px #00efff, -30px -30px 0 #00efff, -30px -30px 20px #00efff, 30px 30px 0 #00efff, 30px 30px 20px #00efff, 30px -30px 0 #00efff, 30px -30px 20px #00efff, -30px 30px 0 #00efff, -30px 30px 20px #00efff; animation: animate 5s linear infinite; animation-delay: calc(-0.25s * var(--i)); transform-origin: 20px; transition: 2s; } .loader:hover span::before { box-shadow: 0 0 20px #00efff, -200px -200px 0 #00efff, -200px -200px 20px #00efff, 200px 200px 0 #00efff, 200px 200px 20px #00efff, 200px -200px 0 #00efff, 200px -200px 20px #00efff, -200px 200px 0 #00efff, -200px 200px 20px #00efff; transform-origin: 250px; } @keyframes animate { 0% { transform: rotate(0deg); filter: hue-rotate(0deg); } 100% { transform: rotate(360deg); filter: hue-rotate(360deg); } }
Copy Codes
Post a Comment
0 Comments
Social Media
Popular Posts
Square And Cube Root Calculator
July 30, 2022
Spin Loading Animation with CSS
September 25, 2022
Amazing Focus Hover Effects With HTML CSS
July 19, 2022
CSS Form input Field text and gradient Border
August 26, 2022
Tags
CSS
11
HTML
6
JavaScript
2
Loading...
0 Comments