鼠标停在图片上黑白的图片变成彩色。
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style type="text/css"> a img{filter: gray;} a:hover img{filter:;} </style> </head> <body> <a href="链接地址"><img src="图片1.jpg" border="0"></a> <a href="链接地址"><img src="图片2.jpg" border="0"></a> </body> </html>