码迷,mamicode.com
首页 > 移动开发 > 详细

解决在android里面(三星s3)等一些4.1系统的手机上cancas刮刮乐无效

时间:2014-12-22 16:25:49      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

 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

解决在android里面(三星s3)等一些4.1系统的手机上cancas刮刮乐无效

标签:

原文地址:http://my.oschina.net/u/2255569/blog/359234

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!