UNPKG

@kajws/galaxy-js

Version:

A JavaScript port of the classic galaxy screensaver with 3D particle simulation

26 lines (24 loc) 570 B
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Galaxy JS</title> <style> body { margin: 0; padding: 0; overflow: hidden; } galaxy-simulation, simple-galaxy-simulation { width: 100vw; height: 100vh; } </style> </head> <body> <simple-galaxy-simulation rotation="0.1"></simple-galaxy-simulation> <script type="module" src="galaxy-js.iife.js"></script> </body> </html>