摘要: window.requestAnimationFrame() 告诉浏览器——你希望执行一个动画,并且要求浏览器在下次重绘之前调用指定的回调函数更新动画。该方法需要传入一个回调函数作为参数,该回调函数会在浏览器下一次重绘之前执行 传送门 阅读全文
posted @ 2020-08-29 17:29 酷酷的城池 阅读(258) 评论(0) 推荐(0) 编辑
摘要: //生成从minNum到maxNum的随机数 function randomNum(minNum,maxNum){ switch(arguments.length){ case 1: return parseInt(Math.random()*minNum+1,10); break; case 2: 阅读全文
posted @ 2020-08-29 17:28 酷酷的城池 阅读(108) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> * { margin: 0; } </style> <script src="https://apps.bdimg. 阅读全文
posted @ 2020-08-29 15:26 酷酷的城池 阅读(189) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML5 canvas 设置背景图</title> <script src="canvas2image.js"></script> </head> <body> <canvas 阅读全文
posted @ 2020-08-29 14:59 酷酷的城池 阅读(779) 评论(0) 推荐(0) 编辑