Efecto Imagen con div debajo que la oscurece


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. .imgback{
  2. background:#299DCF;
  3. }
  4. .imghover:hover{
  5. filter:alpha(opacity=100);
  6. opacity: 1;
  7. moz-opacity:.1;
  8. khtml-opacity:.1;
  9. }
  10. .imghover{
  11. filter:alpha(opacity=50);
  12. opacity: .7;
  13. moz-opacity:.7;
  14. khtml-opacity:.7;
  15. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.