A collection of GPU-accelerated PixiJS 8 overlays and animated screens for use as OBS Browser Sources. All screens render with a transparent background and are designed to layer over your stream.
- Node.js 18+
- npm (comes with Node)
npm install
npm run devThe dev server starts at http://localhost:8080
Go to http://localhost:8080/map.html to see an index of all available screens. Click any screen to view it, or navigate directly to its URL (see below).
Each screen has its own URL — navigate to one directly:
http://localhost:8080/main-web-cam-border.html
http://localhost:8080/planet.html
http://localhost:8080/rain.html
# etc.
npm run buildOutput goes to dist/. You can then serve it with any static file server and point OBS to those URLs.
| URL | Description |
|---|---|
/main-web-cam-border.html |
Animated border with logo, graffiti splatters, and decorative geometry |
/wavecam.html |
Wave/ripple distortion flowing around the webcam frame |
/hexcam.html |
Hexagonal cells forming concentric rings around the camera |
/hexgridcam.html |
Dense hex grid tessellation with animated color cycling |
/hexlayercam.html |
Multi-layer independently-rotating hex rings |
/trapcam.html |
Trapezoidal geometric frame with warping distortion |
| URL | Description |
|---|---|
/background.html |
Tech-symbol boids flocking with comets and ambient particles |
/matrix-dots.html |
Catppuccin grid dots repelled by particles, with connection lines |
/generative.html |
Sinusoidal phase-trail dots drawing colorful procedural paths |
/triangulation.html |
Delaunay-style triangulation network with flowing geometry |
/rain.html |
Water ripple/splash effects with expanding circles |
/atom.html |
Atomic model — nucleus, electron orbits, quantum particle effects |
/planet.html |
Planetary orbital simulation with gravitational dynamics |
/aquarium.html |
Ambient aquarium-style particle visualization |
| URL | Description |
|---|---|
/logo.html |
Heartbeat ECG + orbiting dots + LIVE indicator |
/break.html |
"Breaking news"-style overlay with animated symbol glyphs |
/music-break.html |
Music visualizer / audio-reactive break screen |
/confidential.html |
Classified / redacted information display |
/title-powerline.html |
Scrolling news ticker with green band and audio symbols |
/starting-soon.html |
Generic placeholder for layout testing |
- In OBS, click + in the Sources panel.
- Select Browser.
- Give it a name (e.g.
Webcam Border).
| Setting | Value |
|---|---|
| URL | http://localhost:8080/main-web-cam-border.html (or whichever screen) |
| Width | Match your canvas resolution (e.g. 1920) |
| Height | Match your canvas resolution (e.g. 1080) |
| Custom CSS | Leave blank — transparency is built in |
| Shutdown source when not visible | Optional — saves GPU when scene is hidden |
| Refresh browser when scene becomes active | Recommended for animated screens |
All screens already set
background: transparentandbackgroundAlpha: 0in PixiJS, so you do not need to enable "Allow transparency" separately in OBS — it works automatically with browser sources.
- Place the browser source above your Webcam/Video Capture source in the sources list.
- Use OBS Filters on your webcam source if you need to crop or color-correct it independently.
Camera border screens are designed to frame a circular or rounded webcam feed. To make the webcam itself circular in OBS:
- Select your Video Capture Device (webcam) source.
- Click the Filters button (or right-click → Filters).
- Click + → Image Mask/Blend.
- Set Type to
Alpha Mask (Alpha Channel). - Click Browse and select a circular mask PNG.
The mask PNG should be a white-filled circle on a transparent (or black) background, sized to match your webcam crop. A 1000×1000 or 512×512 white circle on transparency works well.
You can create one quickly in any image editor (GIMP, Photoshop, Figma) — draw a circle, fill white, export as PNG with transparency. Free ones are also available by searching "OBS circular webcam mask PNG".
- Select your webcam source.
- Right-click → Filters → + → Crop/Pad.
- Crop to a square (equal width/height).
- Add another filter: Round Corners (available in OBS 30+).
- Set radius to
50%for a perfect circle.
- Use the Edit Transform dialog (right-click → Transform → Edit Transform) to position and scale the webcam source.
- The camera border screens (e.g.
main-web-cam-border.html,hexcam.html) are centered and sized relative to the full canvas — position your circular webcam in the center of the scene at roughly400×400to600×600px depending on the border design. - Toggle the browser source visibility while adjusting to see the frame alignment.
- Tech stack: PixiJS 8, TypeScript, Vite, Motion, Pixi Sound
- Color theme: Catppuccin Mocha throughout
- All screens are transparent-background by default — no chroma key needed
- Adding a new screen: create
src/MyScreen.ts+my-screen.html, register the HTML entry invite.config.ts