Wulin.com (www.vevb.com) مقدمة مقالة: HTML5 Canvas Text Color ، سمات الخطوط التي يمكننا استخدامها ضمن نطاق القماش.
HTML5 Canvas Text Color ، يمكننا استخدام الخطوط داخل خصائص مجموعة Canvas.
دعنا نقدم لك مثالًا بسيطًا لشرح بناء الجملة الأساسي:
HTML5 Canvas Text Color مثيل
<! doctype html>
<html>
<head>
<title> html5_canvas_text_color </title>
<style>
الجسم {margin: 0px ؛ padding: 0px ؛}
#mycanvas {الحدود: 1px Solid #9C9898 ؛ الهامش: 0 Auto ؛ Margin-Top: 200px ؛ الهامش اليساري: 100px ؛}
</style>
<script>
window.onload = function () {
var canvas = document.getElementById (mycanvas) ؛
var context = canvas.getContext (2d) ؛
var x = 150 ؛
var y = 100 ؛
context.font = 40pt calibri ؛
context.fillStyle = #0000ff ؛ // لون النص
context.fillText (hello webjx! ، x ، y) ؛
} ؛
</script>
</head>
<body>
<canvas id = عرض mycanvas = 578 ارتفاع = 200>
</canvas>
</body>
</html>