灰色/彩色图像菜单(仅用于 IE)

  1. <html>
  2. <head>
  3. <style>
  4. img
  5. {
  6. filter:gray()
  7. }
  8. </style>
  9.  
  10. <script type="text/javascript">
  11. function color(elmnt)
  12. {
  13. elmnt.style.filter=false
  14. }
  15.  
  16. function gray(elmnt)
  17. {
  18. elmnt.style.filter="gray()"
  19. }
  20. </script>
  21.  
  22. </head>
  23. <body>
  24.  
  25. 请把鼠标移动到图像链接上:
  26. <p>
  27. <a href="/i/eg_landscape.jpg">
  28. <img border="0" onmouseover="color(this)" onmouseout="gray(this)" src="/i/eg_logo.gif" /><br /></a>
  29.  
  30. <a href="http://www.altavista.com/">
  31. <img border="0" onmouseover="color(this)" onmouseout="gray(this)" src="/i/eg_altavista.gif" /><br /></a>
  32.  
  33. <a href="http://www.yahoo.com/">
  34. <img border="0" onmouseover="color(this)" onmouseout="gray(this)" src="/i/eg_yahoo.gif" /></a>
  35. </p>
  36.  
  37. </body>
  38. </html>