You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.md 2.4 KiB

12 years ago
10 years ago
12 years ago
10 years ago
10 years ago
12 years ago
10 years ago
12 years ago
10 years ago
12 years ago
10 years ago
12 years ago
12 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Pannellum
  2. ## About
  3. Pannellum is a lightweight, free, and open source panorama viewer for the web. Built using HTML5, CSS3, JavaScript, and WebGL, it is plug-in free. It can be deployed easily as a single file, just 11kB gzipped, and then embedded into pages as an `<iframe>`. A configuration utility is included to generate the required code for embedding.
  4. ## How to use
  5. 1. Upload `build/pannellum.htm` and a full equirectangular panorama to a web server.
  6. * Due to browser security restrictions, a web server must be used locally as well. With Python 2, one can use `python -m SimpleHTTPServer`, and with Python 3, one can use `python -m http.server`, but any other web server will work as well.
  7. 2. Use the included multi-resolution generator (`utils/multires/generate.py`) or configuration tool (`utils/config/configuration.htm`).
  8. 3. Insert the generated `<iframe>` code into a page.
  9. ## Examples
  10. Examples using both the minified version and the version in the `src` directory are included in the `examples` directory.
  11. ## Browser Compatibility
  12. Since Pannellum is built with emerging web standards, it requires a modern browser to function.
  13. #### Full support (with appropriate graphics drivers):
  14. * Firefox 10+
  15. * Chrome 15+
  16. * Safari 5.1+ (WebGL support must first be enabled in preferences)
  17. * Internet Explorer 11+
  18. #### Almost full support (no full screen):
  19. * Firefox 4+
  20. * Chrome 9+
  21. * Opera 12+ (WebGL support must first be enabled in preferences)
  22. #### No support:
  23. Internet Explorer 10 and previous
  24. ## Building
  25. The `utils` folder contains the required build tools, with the exception of Python 3.2+ and Java installations. To build a minified version of Pannellum, run either `build.sh` or `build.bat` depending on your platform.
  26. ## License
  27. Pannellum is distributed under the MIT License. For more information, read the file `COPYING` or peruse the license [online](http://www.opensource.org/licenses/MIT).
  28. In the past, parts of Pannellum were based on [three.js](https://github.com/mrdoob/three.js) r40, which is licensed under the [MIT License](https://github.com/mrdoob/three.js/blob/44a8652c37e576d51a7edd97b0f99f00784c3db7/LICENSE).
  29. The panoramic image provided with the examples is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/).
  30. ## Credits
  31. * [Matthew Petroff](http://www.mpetroff.net/), Original Author
  32. * [three.js](https://github.com/mrdoob/three.js) r40, Former Underlying Framework