Su aquí:
<a href="#"><img src="img.jpg" /></a>
Css Grey:
img{
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */}
Ungray:
a:hover img{
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
filter: grayscale(0%);
-moz-filter: grayscale(0%);
-ms-filter: grayscale(0%);
-o-filter: grayscale(0%);
filter: none ; /* IE6-9 */
zoom:1; /* needed to trigger "hasLayout" in IE if no width or height is set */
-webkit-filter: grayscale(0%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}
lo encontré en: http://zkiwi.com/topic/chuyen-hinh-mau-thanh-trang-den-bang-css-nhu-the-nao
Edit: IE10 + no es compatible con filtros DX como lo han hecho IE9 y versiones anteriores, ni admite una versión prefijada del filtro de escala de grises. Puede solucionarlo, utilice uno de cada dos soluciones siguientes:
- Conjunto IE10 + para hacer uso de las normas de modo IE9 utilizando el siguiente elemento meta en la cabeza:
<meta http-equiv="X-UA-Compatible" content="IE=9">
- Usar una superposición SVG en IE10 para llevar a cabo la greyscaling internet explorer 10 - howto apply grayscale filter?
Good ol 'internet explorer. Puede hacer más con el atributo de filtro; ya que usa DirectDraw para hacer el renderizado. Pero, entonces solo funciona en IE – nlaq
que tuve que hacer usando jQuery .. hice $ ("# imgid"). Filter.opacity = "0.3" –