实例代码“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
    <radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
8
      <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0" />
9
      <stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
10
    </radialGradient>
11
  </defs>
12
  <ellipse cx="200" cy="70" rx="85" ry="55" fill="url(#grad1)" />
13
</svg>
14
15
</body>
16
</html>