spherical-viewer
Version:
lightweight panorama photo viewer
25 lines (24 loc) • 471 B
HTML
<html>
<head>
<script src="spherical-viewer.js"></script>
<script>
window.onload = function() {
var viewer = spherical_viewer({
src : 'my-picture.jpg',
_maxTextureSize : 1024
});
viewer.canvas.addEventListener('dblclick', function() {
viewer.toggleFullscreen();
});
document.body.appendChild(viewer.canvas);
};
</script>
<style>
* { font-family: arial, sans-serif; }
</style>
</head>
<body>
<h1>Spherical Viewer</h1>
</body>
</html>