tl;dr of Jason's answer:
throw away that JS lib, you don't need it. Just create a div element with the image as background-image, make it position: fixed and background-size: cover. Then write your content as usual. The background image will stay and cover your screen, while you can scroll through your content.
Edit (VanillaJS scroller animations):
Marco Alka When they said "stays there" I assumed fixed positioning, which means it doesn't scroll, which means it wouldn't 'stretch' behind the entire content anyways. At MOST it would just fill the screen best it could...
In which case you add background-size:cover; -- or maybe background-size:contain; depending on how you want it placed/cropped.