Advertisement
1xptolevitico69

@keyframes

Jun 7th, 2020
984
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.58 KB | None | 0 0
  1. html
  2.  
  3.  
  4. <div id='rot'></div>
  5.  
  6. <a href='#rot'>Start</a>
  7. <p>
  8.   <a href='#'>Stop</a>
  9.  
  10.  
  11. css
  12.  
  13. #rot {
  14.   width: 300px;
  15.   height: 300px;
  16.   border: 10px dashed red;
  17.   border-radius: 50%;
  18.   position: absolute;
  19.   top: 50%;
  20.   left: 50%;
  21.   transform: translate(-50%, -50%);
  22. }
  23.  
  24. #rot:target {
  25.   animation: rot 5s linear infinite;
  26. }
  27.  
  28. a {
  29.   text-decoration: none;
  30.   font-weight: 900;
  31.   font-size: 25px;
  32.   background-color: red;
  33.   color: white;
  34.   padding: 5px 10px;
  35.   border-radius: 5px;
  36. }
  37.  
  38. @keyframes rot {
  39.   100% {
  40.     transform: translate(-50%, -50%) rotate(360deg);
  41.   }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement