SVG Ellipse - <elips>
The <ellipse> elemen digunakan untuk membuat sebuah elips.
Elips berkaitan erat dengan lingkaran. Perbedaannya adalah bahwa elips memiliki radius x dan ay yang berbeda dari satu sama lain, sementara lingkaran memiliki x sama dan y radius:
contoh 1
Contoh berikut membuat sebuah elips:
Berikut adalah kode SVG:
Contoh
<svg height="140" width="500">
<ellipse cx="200" cy="80" rx="100" ry="50"
style="fill:yellow;stroke:purple;stroke-width:2" />
</svg>
Cobalah sendiri " Code explanation:
- The cx atribut mendefinisikan koordinat x dari pusat elips
- The cy atribut mendefinisikan y koordinat pusat elips
- The rx atribut mendefinisikan radius horisontal
- The ry atribut mendefinisikan radius vertikal
contoh 2
Contoh berikut membuat tiga elips di atas satu sama lain:
Berikut adalah kode SVG:
Contoh
<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>
Cobalah sendiri " contoh 3
Contoh berikut menggabungkan dua elips (one yellow and one white) :
Berikut adalah kode SVG:
Contoh
<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>
Cobalah sendiri "