Advertisement
Guest User

bitch

a guest
Oct 23rd, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.32 KB | None | 0 0
  1. .blink_me {
  2.         -webkit-animation-name: blinker;
  3.         -webkit-animation-duration: 0.25s;
  4.         -webkit-animation-timing-function: linear;
  5.         -webkit-animation-iteration-count: infinite;
  6.         padding-left: 80px;
  7.  
  8. }
  9.  
  10.  
  11. @-webkit-keyframes blinker {  
  12.     2% { opacity: 1.0; }
  13.     50% { opacity: 0.0; }
  14.     100% { opacity: 1.0; }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement