Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>baru</title>
- </head>
- <style>
- :root
- {
- --sharingan:500px;
- --t-left:calc(var(--sharingan)/2.4);
- --t-bottom:calc(var(--sharingan)/1.3);
- --incir-size:calc(var(--sharingan)/6);
- --shadow:calc(var(--sharingan)/6);
- }
- #s
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- top:3%;
- left:3%;
- border:0px solid black;
- background:black;
- border-radius:50%;
- }
- #ro
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- top:0%;
- left:0%;
- border:px solid blue;
- border-radius:50%;
- }
- #t
- {
- position:absolute;
- top:0%;
- left:8.5%;
- width:0;
- height:0;
- border-left:var(--t-left) solid transparent;
- border-right:var(--t-left) solid transparent;
- border-bottom:var(--t-bottom) solid black;
- }
- #t2
- {
- position:absolute;
- top:02%;
- left:11%;
- width:0;
- height:0;
- border-left:calc(var(--t-left)/1.06) solid transparent;
- border-right:calc(var(--t-left)/1.06) solid transparent;
- border-bottom:calc(var(--t-bottom)/1.05) solid red;
- }
- #round
- {
- position:absolute;
- border:2px solid red;
- height:calc(var(--sharingan)/1.9);
- width:calc(var(--sharingan)/3);
- background:red;
- border-radius:50%;
- top:2%;
- left:18%;
- transform:rotate(30deg);
- }
- #incir
- {
- position:absolute;
- border:px solid black;
- width:var(--incir-size);
- height:var(--incir-size);
- top:41.5%;
- left:41.5%;
- background:black;
- border-radius:50%;
- box-shadow: 0 0 var(--shadow) 20px black;
- }
- @keyframes ro
- {
- from{transform:rotate(0deg)}
- to{transform: rotate(360deg)}
- }
- #ro:nth-child(){}
- #ro:nth-child(2){transform:rotate(-125deg)}
- #ro:nth-child(3){transform:rotate(120deg)}
- </style>
- <body bgcolor="#363636">
- <div id="s" >
- <div id="ro" style="animation:ro 2s ease-in-out infinite">
- <div id="ro">
- <div id="round"></div>
- </div>
- <div id="ro">
- <div id="round"></div>
- </div>
- <div id="ro">
- <div id="round"></div>
- </div>
- <div id="t"></div>
- <div id="t2"></div>
- <div id="incir"></div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement