Skip to content
Advertisement

JS background with Html text

I have found a js background and now I would like to have this background on all my php files.

The problem is that html code goes either under js or behind it. How can I solve this?

JS file:

JavaScript

Another Php file where I included js:

JavaScript

Css for Php file:

JavaScript

Advertisement

Answer

At the moment the cavas which ‘paints’ the stars has default positioning. In this case therefore it comes before the main HTML.

If you want it as a background covering the whole viewport then a couple of things have to change:

  • the height needs to go to 100%
  • the positioning needs to be set at fixed (fixed in the viewport starting at the top left corner) and the z-index lowered so it’s below the subsequent HTML.

In the background.php file change the style of the canvas to:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement