写完不出现小球,可以试下
var aball = {
x : Number(margin_left+x+(2*j+1)*(radius+1)),
y : Number(margin_top+y+(2*i+1)*(radius+1)),
vx : Number(4*Math.pow(-1,parseInt(1000*Math.random()))),
vy : -10,
g : Number(2+3*Math.random().toFixed(1)),
color : colors[Math.floor((colors.length)*Math.random())]
};
var aball = {
x : Number(margin_left+x+(2*j+1)*(radius+1)),
y : Number(margin_top+y+(2*i+1)*(radius+1)),
vx : Number(4*Math.pow(-1,parseInt(1000*Math.random()))),
vy : -10,
g : Number(2+3*Math.random().toFixed(1)),
color : colors[Math.floor((colors.length)*Math.random())]
};
2017-06-22
哈哈哈,我也在new Date().getTime()上面翻了车!!
得到的数字是相对于1970年的,自然在update()中找不到digit对应的值。
而直接通过new Date().getHours() + ... + ... 这样获取的实际上是之多一天走过的秒数,自然是正确的
得到的数字是相对于1970年的,自然在update()中找不到digit对应的值。
而直接通过new Date().getHours() + ... + ... 这样获取的实际上是之多一天走过的秒数,自然是正确的
2017-06-22
<style type="text/css">
body,html{
margin: 0;
height: 100%;
}
</style>
屏幕高度自适应可以试试这个
body,html{
margin: 0;
height: 100%;
}
</style>
屏幕高度自适应可以试试这个
2017-06-11