Advertisement
tanaxmercedes

CSS Filters

Aug 6th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <style>
  2. -webkit-filter: filtername(100%);
  3. filter: filtername(100%);
  4. -webkit-transition: 2s ease-in-out;
  5. -moz-transition: 2s ease-in-out;
  6. -o-transition: 2s ease-in-out;
  7. transition: 2s ease-in-out;
  8. </style>
  9.  
  10. grayscale(%)
  11. blur(px)
  12. brightness(%)
  13. contrast(%)
  14. drop-shadow(h-shadow v-shadow blur spread color)
  15. invert(%)
  16. opacity(%)
  17. sepia(%)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement