SVG Ellipse - <ellipse>
<ellipse> Elementul este folosit pentru a crea o elipsă.
Elipsă este strâns legată de un cerc. Diferența este că o elipsă are o rază x și ay care diferă unul de altul, în timp ce un cerc are x egale și raza y:
Exemplul 1
Exemplul următor creează o elipsă:
Aici este codul SVG:
Exemplu
<svg height="140" width="500">
<ellipse cx="200" cy="80" rx="100" ry="50"
style="fill:yellow;stroke:purple;stroke-width:2" />
</svg>
Încearcă - l singur » Code explanation:
- cx atribut defineste coordonata X a centrului elipsei
- cy atribut definește coordonează y din centrul elipsei
- rx atribut definește raza orizontală
- ry atribut definește raza verticală
Exemplul 2
Exemplul următor creează trei elipse pe partea de sus a reciproc:
Aici este codul SVG:
Exemplu
<svg height="150" width="500">
<ellipse cx="240" cy="100" rx="220" ry="30"
style="fill:purple" />
<ellipse cx="220" cy="70" rx="190" ry="20"
style="fill:lime" />
<ellipse cx="210" cy="45" rx="170" ry="15"
style="fill:yellow" />
</svg>
Încearcă - l singur » Exemplul 3
Următorul exemplu combină două elipse (one yellow and one white) :
Aici este codul SVG:
Exemplu
<svg height="100" width="500">
<ellipse cx="240" cy="50" rx="220" ry="30"
style="fill:yellow" />
<ellipse cx="220" cy="50" rx="190" ry="20"
style="fill:white" />
</svg>
Încearcă - l singur »