案例:SVG案例     状态:可编辑再运行    进入横版
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p><b>Note: </b>Internet Explorer and Safari do not support SVG filters yet!</p>
6
7
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
8
  <defs>
9
    <filter id="f1" x="0" y="0" width="200%" height="200%">
10
      <feOffset result="offOut" in="SourceGraphic" dx="20" dy="20" />
11
      <feBlend in="SourceGraphic" in2="offOut" mode="normal" />
12
    </filter>
13
  </defs>
14
  <rect width="90" height="90" stroke="green" stroke-width="3"
15
  fill="yellow" filter="url(#f1)" />
16
</svg>
17
18
</body>
19
</html>

 运行结果 
 北美留学生论坛