珠f基于Vue+Vuex實(shí)戰(zhàn)打造QQ音樂WebApp
? ?window.onload = function(){//頁面加載時(shí)執(zhí)行
? ? ? ?const canvas = document.getElementById('canvas')
? ? ? ?canvas.width = 800 //設(shè)置畫布的寬度
? ? ? ?canvas.height = 800 //設(shè)置畫布的高度
? ? ? ?const ctx = canvas.getContext('2d') //創(chuàng)建2d的上下文繪制環(huán)境
? ? ? ?for(let piece of tangram){ ?//遍歷,取出tangram數(shù)組中的每一個(gè)對(duì)象
? ? ? ? ? ?//console.log(piece)
? ? ? ? ? ?draw(piece,ctx) //調(diào)用draw函數(shù)
? ? ? ?}
? ?}
標(biāo)簽: