本文共 390 字,大约阅读时间需要 1 分钟。
炫酷HTML5网页背景基于Canvas绘制
function resized() { canvas.width = window.innerWidth; canvas.height = window.innerHeight; ({ width, height } = canvas); width_half = width * 0.5; height_half = height * 0.5; canvasHypot = Math.hypot(width_half, height_half); ctx.beginPath(); ctx.fillStyle = 'hsl(0, 0%, 0%)'; ctx.fillRect(0, 0, width, height);}
预览地址:
下载地址:转载于:https://blog.51cto.com/14168515/2372433