Advertisement
Aniket_Goku

naori

Mar 24th, 2021
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.02 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Naori</title>   
  4.     </head>
  5.     <style>
  6.         :root
  7.         {
  8.             --sharingan:400px;
  9.             --shadow:calc(var(--sharingan)/4);
  10.            
  11.         }
  12.         #sharingan
  13.         {
  14.             position:absolute;
  15.             width:var(--sharingan);
  16.             height:var(--sharingan);
  17.             background:black;
  18.             margin:3%;
  19.             border-radius:100%;
  20.             border:10px solid black;
  21.            
  22.  
  23.         }      
  24.         #c
  25.         {
  26.             position:absolute;
  27.             width:var(--sharingan);
  28.             height:var(--sharingan);
  29.             border:0px solid blue;
  30.            
  31.             border-radius:100%;
  32.            
  33.  
  34.         }      
  35.         #c1
  36.         {
  37.             position:absolute;
  38.             width:var(--sharingan);
  39.             height:var(--sharingan);
  40.             border:0px solid blue;         
  41.             border-radius:100%;
  42.             animation: ro 2s ease-in-out infinite;
  43.         }      
  44.                
  45.        
  46.         #line
  47.         {
  48.             position:absolute;
  49.             width:20%;
  50.             height:45%;
  51.             left:22.5%;
  52.             top:8%;
  53.             border-left:30px solid black;
  54.             transform:rotate(-60deg);
  55.         }
  56.         #circle
  57.         {
  58.             position:absolute;
  59.             width:60%;
  60.             height:60%;
  61.             left:20%;
  62.             top:0%;
  63.             border-radius:50%;
  64.             background:red;
  65.            
  66.         }
  67.         #incir
  68.         {
  69.             position:absolute;
  70.             width:calc(var(--sharingan)/6.5);
  71.             height:calc(var(--sharingan)/6.5);
  72.             left:42%;  
  73.             top:42%;
  74.             border:0px solid blue;
  75.             background:black;
  76.             box-shadow:0 0 var(--shadow) 30px black;
  77.             border-radius:100%;
  78.            
  79.         }
  80.         #c:nth-child(){}
  81.         #c:nth-child(2){transform:rotate(120deg);}
  82.         #c:nth-child(3){transform:rotate(240deg);}
  83.  
  84.         @keyframes ro
  85.         {
  86.             from{transform:rotate(0deg)}
  87.             to{transform:rotate(360deg)}
  88.  
  89.         }
  90.     </style>
  91.     <body bgcolor="#595959">
  92.         <div id="sharingan">
  93.             <div id="c1">
  94.                 <div id="c">
  95.                     <div id="circle"></div>
  96.                    
  97.                 </div>
  98.                 <div id="c">
  99.                     <div id="circle"></div>
  100.                    
  101.                 </div>
  102.                 <div id="c">
  103.                     <div id="circle"></div>
  104.                    
  105.                 </div>
  106.                 <div id="c" ><div id="line"></div></div>
  107.                 <div id="c" style="transform:rotate(120deg)"><div id="line"></div></div>
  108.                 <div id="c" style="transform:rotate(-120deg)"><div id="line"></div></div>
  109.                 <div id="incir"></div>
  110.             </div>
  111.         </div>
  112.     </body>
  113. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement