HTML TEMELLERİ
HTML5
İLERİ SEVİYE
CSS TEMELİ
html5 canvas nedir
html5 canvas kullanımı
html5 use of canvas
html5 canvas width
html5 canvas width height
html5 canvas width and height
html5 canvas full width and height
html5 canvas height auto
html5 canvas height width
html5 canvas get width and height
html5 change canvas height
html5 canvas styles
html5 canvas style width
html5 canvas border style
html5 canvas text border
html5 canvas background color
html5 canvas text background color
html5 canvas style background color
canvas background color in html5
change background color of canvas html5
html canvas nedir
html canvas width
html canvas border
html canvas background
html canvas color
html canvas example
html canvas events
html canvas kullanımı
html canvas position
html canvas stroke color

HTML Canvas Kullanımı

HTML Canvas Kullanımı
Html
<canvas id="myCanvas" width="200" height="100"
style="border:1px solid red;">
</canvas>

<canvas> etiketi, web sayfanız üzerinden grafik çizmek için kullanılır. Bir sayfada birden fazla bu etiketi kullanabilirsiniz tabi 'id' vererek.Bunun için genellik javascript kullanılır bu yüzden fazla kafanızın karışmaması açısından bununla ilgili css dili üzerinden örnekler vericeğim.

1- İçi Boş Kare Kutu

Aşağıda gördüğünüz şekildeki kodları sırasıyla açıklamaya çalışalım.

width: Şeklin genişliğini ayarlar.

height: Şeklin yüksekliğini ayarlar.

style: Şekle yerel css özelliği vermeye yarar.(Css derslerinde göreceksiniz.)

border: Şekle çerçeve ekler.Boyutu,çizgi tipi, çizgi rengi şeklinde kısa yoldan kullanılır.

<canvas id="myCanvas" width="100" height="100"
style="border:1px solid red;">
</canvas>

2- İçi Dolu Kare Kutu

Burda açıklamamız gereken sadece bir tek özellik bulunuyor.

background-color: Arkaplan rengini değiştirmemizi sağlar. Renk kodlarıyla yada belirlenen ingilizce renk kelimeleri ile değer verebiliriz.

<canvas id="myCanvas" width="100" height="100"style="border:1px solid blue;background-color:#00FFFF;"></canvas>


Paylaş:

Enes KILIÇ
Webmaster