Transform your websites into spatial Mixed Reality interfaces. Objects step out of the screen and come to life in the real world, using only HTML and JavaScript. No Unity required.
Don't want to force your users to download a native app? No problem. XR Interface degrades gracefully using WebXR, natively supported by most browsers on iOS and Android. Users click and view the 3D object instantly, without installing anything.
The magic isn't limited to AR glasses. If your users don't have dedicated hardware, they can still live the experience by framing the QR code with their phone. Powered by WebXR, the 3D model appears directly in their environment, supported natively by iOS and Android.
| Features | 3D Viewer Desktop / Older Phones |
WebXR Smartphones / Basic Headsets |
XRi App Meta Quest / Android XR |
|---|---|---|---|
| 3D Model Visualization | |||
| Spatial Augmented Reality (AR) | |||
| Grabbing Objects (Hand Tracking) | (Headsets only) | ||
| Real Physics & Collisions | |||
| Bi-directional Interaction (DOM ⇆ 3D) | |||
| Multiplayer & Sync |
Add the XRi.js library to your existing site. Handle logic, animations, and UI using pure JavaScript.
Our engine instantly translates DOM commands into low-latency spatial instructions.
Users visit your site via our App (on headset). The native engine renders 3D with performance impossible for a standard browser.
Accelerate your workflow with our integrated web-based utilities. Build, test, debug, and share your Mixed Reality experiences directly from your browser, at zero cost.
Complete API documentation.
Instantly preview 3D models.
Tweak and modify 3D assets on the fly.
Assemble complex scenes easily.
Clean up your materials in seconds.
Visual logic & interactions.
Generate entry points for mobile AR.
Run scripts on connected devices.
Push UI directly to XR headsets.
Test WebRTC and data channels.
Sandbox for testing interactions.
Create 3D models directly from text prompts.
Transform your restaurant's menu. Customers see 3D dishes right on their table before ordering.
Open DemoLet users try products directly in their own environment. Perfect for furniture or electronics.
Open DemoBuild tabletop games or shared experiences using the integrated WebSocket multiplayer engine.
Open Demo
No heavy SDKs, no hours-long Unity builds.
Include the script and manipulate reality.
<!-- 1. Include the library in your HTML -->
<script src="https://xri.onl/XRi.js"></script>
<script>
// 2. Spawn an object in the real world
const duck = XRi.spawn("duck_1", "https://xri.onl/duck.glb", 0.8);
// 3. Move it using chained asynchronous commands
await duck.move({ x: 0, y: 0.2, z: 0 }, 1.0);
await duck.zoom(1.5, 0.5);
await duck.rotate(90, 0.5);
</script>
Click the duck to run the script!
© 2026 XRi PLATFORM