ข้อมูลอ้างอิงHTML

HTML โดยตัวอักษร HTML ตามหมวดหมู่ รองรับ HTML Browser แอตทริบิวต์ HTML HTML Global Attributes เหตุการณ์ HTML HTML สี HTML Canvas HTML เสียง/วิดีโอ ชุดอักขระ HTML HTML Doctypes การเข้ารหัส URL HTML รหัสภาษา HTML รหัสประเทศ HTML ข้อความ HTTP วิธี HTTP ตัวแปลง PX เป็น EM แป้นพิมพ์ลัด


HTML canvas globalCompositeOperation Property

❮ การอ้างอิงผ้าใบ HTML

ตัวอย่าง

วาดรูปสี่เหลี่ยมผืนผ้าโดยใช้ค่า globalCompositeOperation สองค่าที่แตกต่างกัน สี่เหลี่ยมสีแดงคือ ภาพปลายทาง สี่เหลี่ยมสีน้ำเงินเป็นรูปภาพต้นฉบับ :

แหล่งที่มามากกว่า
ปลายทางเกิน
YourbrowserdoesnotsupporttheHTML5canvastag.

จาวาสคริปต์:

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");

ctx.fillStyle = "red";
ctx.fillRect(20, 20, 75, 50);
ctx.globalCompositeOperation = "source-over";
ctx.fillStyle = "blue";
ctx.fillRect(50, 50, 75, 50);

ctx.fillStyle = "red";
ctx.fillRect(150, 20, 75, 50);
ctx.globalCompositeOperation = "destination-over";
ctx.fillStyle = "blue";
ctx.fillRect(180, 50, 75, 50);

รองรับเบราว์เซอร์

Internet Explorer Firefox โอเปร่า Google Chrome ซาฟารี

Internet Explorer 9, Firefox, Opera, Chrome และ Safari รองรับคุณสมบัติ globalCompositeOperation


ความหมายและการใช้งาน

คุณสมบัติ globalCompositeOperation ตั้งค่าหรือส่งคืนวิธีการวาดรูปภาพต้นทาง (ใหม่) ไปยังรูปภาพปลายทาง (ที่มีอยู่)

ภาพต้นฉบับ =ภาพวาดที่คุณกำลังจะวางลงบนผืนผ้าใบ

ภาพปลายทาง =ภาพวาดที่วางบนผืนผ้าใบแล้ว

ค่าเริ่มต้น: แหล่งที่มามากกว่า
ไวยากรณ์ JavaScript: บริบท .globalCompositeOperation="source-in";

มูลค่าทรัพย์สิน

Value Description Play it
source-over Default. Displays the source image over the destination image
source-atop Displays the source image on top of the destination image. The part of the source image that is outside the destination image is not shown
source-in Displays the source image in to the destination image. Only the part of the source image that is INSIDE the destination image is shown, and the destination image is transparent
source-out Displays the source image out of the destination image. Only the part of the source image that is OUTSIDE the destination image is shown, and the destination image is transparent
destination-over Displays the destination image over the source image
destination-atop Displays the destination image on top of the source image. The part of the destination image that is outside the source image is not shown
destination-in Displays the destination image in to the source image. Only the part of the destination image that is INSIDE the source image is shown, and the source image is transparent
destination-out Displays the destination image out of the source image. Only the part of the destination image that is OUTSIDE the source image is shown, and the source image is transparent
lighter Displays the source image + the destination image
copy Displays the source image. The destination image is ignored
xor The source image is combined by using an exclusive OR with the destination image

ตัวอย่าง

ค่าคุณสมบัติ globalCompositeOperation ทั้งหมด:

"); }

❮ การอ้างอิงผ้าใบ HTML