“Brython SVG” Kode Jawaban

Brython SVG

from browser import document, svg

star = svg.polygon(fill="red", stroke="blue", stroke_width="10",
                   points=""" 75,38  90,80  135,80  98,107
                             111,150 75,125  38,150 51,107
                              15,80  60,80""")

panel = document['panel4']
panel <= star
Black Beaver

Brython SVG

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" 
    width="140" height="200" style="border-style:solid;border-width:1;border-color:#000;">
  <g id="panel">
  </g>
</svg>
Black Beaver

Brython SVG

from browser import document, svg

title = svg.text('Title', x=70, y=25, font_size=22,
                 text_anchor="middle")
circle = svg.circle(cx=70, cy=120, r=40,
                    stroke="black",stroke_width="2",fill="red")
panel = document['panel']
panel <= title
panel <= circle
Black Beaver

Jawaban yang mirip dengan “Brython SVG”

Pertanyaan yang mirip dengan “Brython SVG”

Lebih banyak jawaban terkait untuk “Brython SVG” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya