使用Math.random()寫一個(gè) 隨機(jī) 兩數(shù)之間任意數(shù)字的方法 ---> random(min,max)
算 極限位置 的時(shí)候
畫布的 左側(cè) 和 頂部 加上半徑 (min),
畫布的 右側(cè) 和 底部 減去半徑 (max),
就始終在畫布內(nèi) 顯示出完整的圓了。
算 極限位置 的時(shí)候
畫布的 左側(cè) 和 頂部 加上半徑 (min),
畫布的 右側(cè) 和 底部 減去半徑 (max),
就始終在畫布內(nèi) 顯示出完整的圓了。
2016-08-06
function initCanvas() {
clearInterval(theAnimation)
clippingRegion = {
x: Math.random() * (canvas.width - 2 * radius) + radius,
y: Math.random() * (canvas.height - 2 * radius) + radius,
r: radius
};
draw(image, clippingRegion); //使用剪輯區(qū)域
}
var theAnimation;
clearInterval(theAnimation)
clippingRegion = {
x: Math.random() * (canvas.width - 2 * radius) + radius,
y: Math.random() * (canvas.height - 2 * radius) + radius,
r: radius
};
draw(image, clippingRegion); //使用剪輯區(qū)域
}
var theAnimation;
2016-07-28
關(guān)于點(diǎn)完show里面點(diǎn)擊reset的bug的解決方法。
在show里面加一個(gè)reset點(diǎn)擊事件就可以了。
$("#reset-btn").on('click', function () {
clearInterval(e);
})
在show里面加一個(gè)reset點(diǎn)擊事件就可以了。
$("#reset-btn").on('click', function () {
clearInterval(e);
})
2016-07-22
xzdjlu 00 發(fā)如雪015211e dexuywo 她a+tumosMVP/額.cned jt2
6
6
2016-07-14