How to show the effect in full screen on Web?

To show the effect in full screen, use JavaScript fullscreen API on Canvas which renders the image.

Or make your canvas size equal to browser window size:

canvas.width = document.body.clientWidth;
canvas.height = document.body.clientHeight;