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