Advertisement
Guest User

Animated BB8 Snoo

a guest
Apr 28th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.82 KB | None | 0 0
  1. /* Images: http://imgur.com/a/kWMzg */
  2. #header-img { /* BB8Body uploaded as Snoo */
  3.     margin-top: 68px;
  4.     margin-left: 60px;
  5. }
  6.  
  7.  
  8. a#header-img-a:after {
  9.     position: absolute;
  10.     display: block;
  11.     content: "";
  12.     background-image: url(%%BB8Head%%);
  13.     width: 33px;
  14.     height: 36px;
  15.     top: 55px;
  16.     left: 72px;
  17.  
  18.     -webkit-transform: translateZ(0);
  19.     -ms-transform: translateZ(0);
  20.     transform: translateZ(0);
  21.     box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  22. }
  23.  
  24. a#header-img-a:hover:after {
  25.     -webkit-animation-name: wobble;
  26.     animation-name: wobble;
  27.     -webkit-animation-duration: 1.2s;
  28.     animation-duration: 1.2s;
  29.     -webkit-animation-timing-function: ease-in-out;
  30.     animation-timing-function: ease-in-out;
  31.     -webkit-animation-iteration-count: 1;
  32.     animation-iteration-count: 1;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement