Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #red{
  2. width:200px;
  3. height:200px;
  4. margin:50px;
  5. background:red;
  6. }
  7. .blur{
  8. -webkit-animation: fadeout linear 2.5s;
  9. }
  10. @-webkit-keyframes fadeout {
  11. 0% { -webkit-filter: opacity(100%) blur(0px);}
  12. 50% { -webkit-filter: opacity(100%) blur(10px);}
  13. 100% { -webkit-filter: opacity(0%) blur(20px);}
  14. }
  15.  
  16. $(document).click(function(){
  17. $('#red').addClass('blur');
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement