File: gradient.svg

package info (click to toggle)
node-zrender 5.4.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,624 kB
  • sloc: javascript: 1,259; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <radialGradient id="myGradient" cx="50%" cy="50%" r="50%">
            <stop offset="0%" stop-color="red"></stop>
            <stop offset="100%" stop-color="black"></stop>
        </radialGradient>
    </defs>
    <rect fill="url(#myGradient)" x="0" y="0" width="200" height="100">
    </rect>
</svg>