CSS Illusion Pattern With Radial Gradient Animation
The Illusion Pattern is a CSS animation that creates an optical illusion of rotating shapes. It uses radial gradients and keyframe animations to achieve the effect, creating a mesmerizing visual experience.
FOLLOW US ON THE INSTAGRAM: https://www.instagram.com/prince_codes1/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Illusion Pattern</title>
<style>
body {
margin: 0;
background: radial-gradient(circle, #1a1a1a,
#000000);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.illusion {
position: relative;...