Open shaan1974 opened 4 years ago
Hello, is it possible to add a bouton to have the canvas in fullscreen ?
function fullScreen() { var iframe = document.getElementById("canvas0"); launchIntoFullscreen(iframe); } function launchIntoFullscreen(element) { if(element.requestFullscreen) { element.requestFullscreen(); } else if(element.mozRequestFullScreen) { element.mozRequestFullScreen(); } else if(element.webkitRequestFullscreen) { element.webkitRequestFullscreen(); } else if(element.msRequestFullscreen) { element.msRequestFullscreen(); } else { console.log('what'); } }
Hello, is it possible to add a bouton to have the canvas in fullscreen ?