{"id":19360566,"url":"https://github.com/sbolel/pano","last_synced_at":"2025-04-23T12:32:24.493Z","repository":{"id":57318588,"uuid":"60646790","full_name":"sbolel/pano","owner":"sbolel","description":"360-panoramic image viewer using Panolens.js","archived":false,"fork":false,"pushed_at":"2024-01-05T13:31:37.000Z","size":15194,"stargazers_count":61,"open_issues_count":6,"forks_count":6,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-02T15:04:07.455Z","etag":null,"topics":["360","360-photo","javascript","javascript-library","js","pano","panolens","panorama","panorama-image","panoramic","stereo-vision"],"latest_commit_sha":null,"homepage":"https://sbolel.github.io/pano","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sbolel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-07T21:11:54.000Z","updated_at":"2024-12-11T09:22:51.000Z","dependencies_parsed_at":"2024-11-10T07:19:00.806Z","dependency_job_id":"bd554e7f-1627-4dd9-b35f-64ca5c3155fe","html_url":"https://github.com/sbolel/pano","commit_stats":{"total_commits":16,"total_committers":2,"mean_commits":8.0,"dds":0.25,"last_synced_commit":"21ed7ea44472dc20eddcbf878fa262ae03e53922"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbolel%2Fpano","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbolel%2Fpano/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbolel%2Fpano/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbolel%2Fpano/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sbolel","download_url":"https://codeload.github.com/sbolel/pano/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249965566,"owners_count":21352926,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["360","360-photo","javascript","javascript-library","js","pano","panolens","panorama","panorama-image","panoramic","stereo-vision"],"created_at":"2024-11-10T07:18:36.182Z","updated_at":"2025-04-23T12:32:23.709Z","avatar_url":"https://github.com/sbolel.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pano.js\n\n[![Build Status][build-image]][build-url]\n[![License][license-image]][license-url]\n[![NPM version][npm-image]][npm-url]\n[![Code Style][code-style-image]][code-style-url]\n[![NPM downloads][npm-downloads-image]][npm-url]\n\n_Add multiple [Panolens.js](https://github.com/sbolel/panolens.js) 360-panoramic viewers to a page with ease._\n\n* Requires [Panolens.js](https://github.com/sbolel/panolens.js), which is based on [Panolens.js](https://github.com/sbolel/panolens.js) by [pchen66](https://github.com/pchen66)\n* Implements `PanoElement` and `PanoPage`\n\n## Installation\n\nYou can either install via npm and include the scripts in your build process, or use a CDN.\n\n* **Using npm packages**\n\n  Install dependencies\n\n    ```bash\n    # with yarn\n    yarn add pano\n\n    # with npm\n    npm install --save pano\n    ```\n\n  Import Pano\n\n    ```js\n    import * as Pano from 'pano'\n    ```\n\n* **Using the CDN**\n\n  Include scripts via CDN by adding them to your `index.html`:\n\n  ```html\n  \u003cscript type=\"text/javascript\" src=\"//sinanbolel.firebaseapp.com/cdn/pano-vendor-v3.0.0.min.js\"\u003e\u003c/script\u003e\n  \u003cscript type=\"text/javascript\" src=\"//sinanbolel.firebaseapp.com/cdn/pano-v3.0.0.min.js\"\u003e\u003c/script\u003e\n  ```\n\n## Usage\n\n1. Instantiate `Pano.Page` object\n\n    ```js\n    /** ES6 */\n    import { Page } from 'pano'\n    const panoPage = new Page('pano')\n    panoPage.init()\n\n    /** ES5 */\n    var Pano = require('pano')\n    var panoPage = new Pano.Page('pano')\n    panoPage.init()\n    ```\n\n2. Add `\u003cpano\u003e` elemement HTML\n\n    Include the required `width`, `height`, `src`, `caption` (optional) attributes for the `\u003cpano\u003e` element(s) in your view:\n\n    ```html\n    \u003cpano width=\"1024\" height=\"512\" src=\"https://sbolel.github.io/pano/img/588ca1b0bf_o.jpg\" caption=\"Equirectangular Panorama\"/\u003e\u003c/pano\u003e\n    ```\n\n1. Initialize all `\u003cpano\u003e` elements on the page\n\n    ```js\n    var panoPage = new Pano.Page('pano')\n    panoPage.init()\n    ```\n\n## Credits\n\n* [prescottprue](http://github.com/prescottprue) - Webpack implementation, tests, coverage\n* [pchen66](http://github.com/pchen66) - Original Panolens.js implementation\n\n\u003c!-- links --\u003e\n\n[npm-image]: https://img.shields.io/npm/v/pano.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/pano\n[npm-downloads-image]: https://img.shields.io/npm/dm/pano.svg?style=flat-square\n[build-image]: https://circleci.com/gh/sbolel/pano.svg?style=shield\n[build-url]: https://circleci.com/gh/sbolel/pano\n[daviddm-image]: https://img.shields.io/david/sbolel/pano.svg?style=flat-square\n[daviddm-url]: https://david-dm.org/sbolel/pano\n[climate-image]: https://img.shields.io/codeclimate/github/sbolel/pano.svg?style=flat-square\n[climate-url]: https://img.shields.io/codeclimate/github/sbolel/pano.svg?style=flat-square\n[coverage-image]: https://img.shields.io/codeclimate/coverage/github/sbolel/pano.svg?style=flat-square\n[coverage-url]: https://img.shields.io/codeclimate/coverage/github/sbolel/pano.svg?style=flat-square\n[license-image]: https://img.shields.io/npm/l/pano.svg?style=flat-square\n[license-url]: https://github.com/sbolel/pano/blob/master/LICENSE\n[code-style-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square\n[code-style-url]: http://standardjs.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbolel%2Fpano","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsbolel%2Fpano","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbolel%2Fpano/lists"}