我喜欢你是寂静的1
2018/6/11 17:26:49
var oCan = $("#myCanvas");
设置canvas大小的时候,只能通过设置width,height标签属性设置宽高,
不能通过css样式中width和height设置宽高,也不能通过:
ocon.style.width,ocon.style.height
还不能通过JQ中的css函数设置宽高(会拉伸canvas),只能通过两种方式:
1.标签中的width和height
2.
ocon.width, ocon.height( oCan.get(0).width = oCan.get(0).height = 600;)