Brad
Results
1
comments of
Brad
Try this JavaScript: ``` height = window.innerHeight; canvas = document.getElementById('myCanvas'), ratio = canvas.width / canvas.height; width = height * ratio; canvas.style.width = width + 'px'; canvas.style.height = height + 'px';...