@tdurtschi/starfield
v1.0.5
Published
Usage: ```js import starfield from "./index.js"; starfield({ target: "elementId", fillRatio: 0.8 }); ```
Downloads
4
Readme
Starfield
Usage:
import starfield from "./index.js";
starfield({
target: "elementId",
fillRatio: 0.8
});
The target element must have a defined height.
If you're using this as a full-screen background, the following styles might be useful:
html,
body {
padding: 0;
margin: 0;
background-color: black;
min-height: 100%;
}
#elementId {
z-index: 10;
height: 100%;
min-height: 100vh;
}