A standalone panorama WebGL image viewer for desktop and mobile. This uses regl as the WebGL wrapper, and comes in at a total of 140kb uglified, or 46kb gzipped. This is useful if you need a panorama viewer but don't want to embed all of ThreeJS (which is around 500kb uglified).
npm install 360-image-viewer --save
Click here to see a demo of this module in action. The source code is in demo/index.js.
The code below sets up a full-screen 360 image viewer. For a more complete example, see demo/index.js.
const create360Viewer = require('360-image-viewer');
const canvasFit = require('canvas-fit');
// load your image
const image = new Image();
image.src = 'panosphere.jpg';
image.onload = () => {
// when the image is loaded, setup the viewer
const viewer = create360Viewer({
image: image
});
// attach canvas to body
document.body.appendChild(viewer.canvas);
// setup fullscreen canvas sizing
const fit = canvasFit(viewer.canvas, window, window.devicePixelRatio);
window.addEventListener('resize', fit, false);
fit();
// start the render loop
viewer.start();
};
Creates and returns a new WebGL canvas viewer with the specified opt
options object.
Options:
image
— the HTMLImageElement, if not specified it can be set latercanvas
— a<canvas>
tag to use, otherwise creates a new onefov
— a field of view, in radians, defaults to 45 degreesrotateSpeed
— a scalar for the drag rotation speed, default 0.15damping
— a scalar for damping/spring, default 0.275clearColor
— a RGBA clear color, default[ 0, 0, 0, 0 ]
(ie. transparent)
You can also pass orbit-controls options, for example phi
as the initial rotation, or passing { rotate: fale }
to ignore mouse/touch rotation.
The image
should be a DOM Image or Video element, and should already be loaded.
Start the requestAnimationFrame render loop.
Stop the requestAnimationFrame render loop.
Render a single frame. This may be useful if, say, you change the canvas size when the requestAnimationFrame is not running.
Enable the input controls, attaching mouse/touch events to the canvas. Has no effect if the controls are already enabled.
Disable the input controls, detaching mouse/touch events from the canvas. Has no effect if the controls are already disabled.
Changes the current image to the specified DOM image
. This can be an image, video, or an options object for regl#texture(). By default, min
and mag
filter will use 'linear'
for smoother filtering.
Stop the render loop, disable the input controls, and destroy the WebGL context. The viewer will no longer be usable after this point.
The canvas the viewer will render into.
The current field of view of the perspective camera in radians. Can be altered at run-time.
The current horizontal rotation angle in radians.
The current vertical rotation angle in radians.
Attach a frame listener to the viewer, where fn
accepts the dt
(delta time) parameter per frame. You can remove this with viewer.removeListener('tick', fn)
.
MIT, see LICENSE.md for details.