滤镜

  1. <html>
  2. <head>
  3. <style>
  4. h2
  5. {
  6. width:100%;
  7. }
  8. </style>
  9. </head>
  10.  
  11. <body>
  12.  
  13. <h2 style="filter:glow()">发光</h2>
  14. <h2 style="filter:blur()">模糊</h2>
  15. <h2 style="filter:fliph()">Flip H</h2>
  16. <h2 style="filter:flipv()">Flip V</h2>
  17. <h2 style="filter:shadow()">阴影</h2>
  18. <h2 style="filter:dropshadow()">阴影</h2>
  19. <h2 style="filter:wave(Strength=2)">波浪</h2>
  20.  
  21. <p>注释:如果元素的 width 属性没有设置,那么滤镜不会起作用。</p>
  22. </body>
  23. </html>