解决在android里面(三星s3)等一些4.1系统的手机上cancas刮刮乐无效
function drawcircle(id,x,y,r){ var ca = document.getElementById(id); var cans = ca.getContext("2d"); cans.globalCompositeOperation = "destination-out"; cans.beginPath(); cans.arc(x,y,r,0,Math.PI*2); //解决兼容 ca.style.display = ‘none’; ca.offsetHeight; ca.style.display = ‘inherit’; //解决兼容 cans.fillStyle="#000"; cans.fill(); } 这样可以解决
参考自:http://bbs.csdn.net/topics/390808206
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。