Advertisement
Carolaine_Vieira

Contraste

Nov 9th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. >>>>>>> 1º Passo:
  2.  
  3. Colem esse código entre <style type="text/css"> e </style>
  4.  
  5. #cont{
  6.  
  7. margin-top:0px; /* quanto ela vai pra baixo */
  8. margin-left:0px; /* quanto ela vai pra direita */
  9. border-radius:100px; /* imagen circular igual a 100, imagem quadrada só é deixar em 0 */
  10. height:auto; /* altura da foto */
  11. width:200px; /* largura da foto */
  12. -webkit-filter: contrast(2.0); /* o tanto do contraste, tem que ser maior que 1 */
  13. -webkit-transition: opacity 0.8s linear;
  14. -webkit-transition: all 0.5s ease;
  15. -moz-transition: all 0.5s ease;
  16. -o-transition: all 0.5s ease;
  17. -ms-transition: all 0.5s ease;
  18. transition: all 0.5s ease;
  19. }
  20.  
  21. #cont:hover {
  22.  
  23. -webkit-filter: contrast(1); /* deixe em 1 pra voltar ao normal */
  24. -webkit-transition: opacity 0.8s linear;
  25. -webkit-transition: all 0.5s ease;
  26. -moz-transition: all 0.5s ease;
  27. -o-transition: all 0.5s ease;
  28. -ms-transition: all 0.5s ease;
  29. transition: all 0.5s ease;
  30. }
  31.  
  32. >>>>>>> 2º Passo:
  33.  
  34. Colem esse código depois de </style> e antes de </body>
  35.  
  36. <img id="cont" src="URL da IMAGEM que vc quer">
  37.  
  38. TUTORIAL FEITO POR AMPLAMENTE.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement