Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.54 KB | None | 0 0
  1. <style>
  2.     #button{
  3.         position: fixed;
  4.         left:0;
  5.         top:0;
  6.         background-color: black;
  7.         color: white;
  8.         width: 10%;
  9.         height:10%;
  10.     }
  11.  
  12.     #trigger:target + animated{
  13.         left: 50%;
  14.     }
  15.  
  16.     #animated{
  17.         position: fixed;
  18.         left: 0;
  19.         top: 10%;
  20.         width: 10%;
  21.         height: 10%;
  22.         background-color: blue;
  23.         transition: 1s;
  24.     }
  25.  
  26.  
  27. </style>
  28.  
  29. <div id="button">
  30.     <a href="#trigger">click here</a>
  31. </div>
  32.  
  33. <div id="animated"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement