光效滤镜

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function setlight()
  5. {
  6. document.getElementById('light_div').filters[0].addcone(0,0,0,60,60,115,132,214,100,100);
  7. }
  8. </script>
  9. <style>
  10. div
  11. {
  12. width:100px;
  13. }
  14. </style>
  15.  
  16. </head>
  17. <body onload="setlight()">
  18. 图像:"landscape.jpg" 没有光照效果:<br />
  19. <img src="/i/eg_landscape.jpg" width="160" height="120" />
  20. <br />
  21. <br />
  22. 同一个图像,带有光照效果:<br />
  23. <div id="light_div" style="filter:light(enabled=1);">
  24. <img src="/i/eg_landscape.jpg" width="160" height="120" />
  25. </div>
  26. </body>
  27. </html>