实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<svg xmlns="https://www.w3.org/2000/svg" version="1.1">
6
  <defs> 
7
    <linearGradient id="MyGradient" gradientUnits="userSpaceOnUse" x1="100" y1="0" x2="300" y2="0"> 
8
      <stop offset="0" style="stop-color:#000000" /> 
9
      <stop offset=".33" style="stop-color:#ffffff" />       
10
      <stop offset=".67" style="stop-color:#ffff00" /> 
11
      <stop offset="1" style="stop-color:#808080" /> 
12
    </linearGradient> 
13
    <filter id="normal"> 
14
      <feBlend mode="normal" in2="BackgroundImage" in="SourceGraphic" /> 
15
    </filter> 
16
    <filter id="multiply"> 
17
      <feBlend mode="multiply" in2="BackgroundImage" in="SourceGraphic" /> 
18
    </filter> 
19
    <filter id="screen"> 
20
      <feBlend mode="screen" in2="BackgroundImage" in="SourceGraphic" /> 
21
    </filter> 
22
    <filter id="darken">