UNPKG

spherical-viewer

Version:
25 lines (24 loc) 471 B
<!doctype 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>