All Projects → JimmyVV → Iv Panorama

JimmyVV / Iv Panorama

Licence: apache-2.0
720° panorama player

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Iv Panorama

Samsara
☸️ Continuous UI
Stars: ✭ 1,051 (+1516.92%)
Mutual labels:  html5
X11vnc Desktop
Docker image for Ubuntu with X11 and VNC
Stars: ✭ 57 (-12.31%)
Mutual labels:  html5
Theorytracker
🎼 HTML5/WebAudio multi-track functional harmony analysis and songwriting app! -- https://hlorenzi.github.io/theorytracker/
Stars: ✭ 62 (-4.62%)
Mutual labels:  html5
React Manga
manga的react版本
Stars: ✭ 50 (-23.08%)
Mutual labels:  html5
Scalajs Bootstrap
Scala.js bootstrap components
Stars: ✭ 55 (-15.38%)
Mutual labels:  html5
Sharebook Frontend
Projeto frontend de código livre para o app Sharebook.
Stars: ✭ 59 (-9.23%)
Mutual labels:  html5
Zimo Article
📚博客——源于实践,乐于分享,欢迎Star~
Stars: ✭ 1,046 (+1509.23%)
Mutual labels:  html5
Hqchart
HQChart - H5, 微信小程序 沪深/港股/数字货币/期货/美股 K线图(kline),走势图,缩放,拖拽,十字光标,画图工具,截图,筹码图. 分析家语法,通达信语法,(麦语法),第3方数据替换接口
Stars: ✭ 1,126 (+1632.31%)
Mutual labels:  html5
Donotlink
An anonymous URL-shortener that blocks bots and removes referers
Stars: ✭ 56 (-13.85%)
Mutual labels:  html5
Ip Kvm Interface
DIY IP-KVM for Remote Desktop Access
Stars: ✭ 62 (-4.62%)
Mutual labels:  html5
Asciidoctor Html5s
Semantic HTML5 converter (backend) for Asciidoctor
Stars: ✭ 50 (-23.08%)
Mutual labels:  html5
React Frontend Dev Portfolio
Easy to adapt and deploy React portfolio inspired with solutions found at GitHub.
Stars: ✭ 55 (-15.38%)
Mutual labels:  html5
Tower game
💒 盖楼游戏 html5 canvas tower building game 🏢🏬🏦🏯🏰
Stars: ✭ 1,110 (+1607.69%)
Mutual labels:  html5
Mopaint
🎨💪 Modern, modular paint and more! (pre-alpha, not much done yet)
Stars: ✭ 50 (-23.08%)
Mutual labels:  html5
Coursify Hacktoberfest
A curated list of best free learning resources on the planet, made specifically for first time hackers!
Stars: ✭ 63 (-3.08%)
Mutual labels:  html5
Gomponents
Declarative view components in Go, that can render to HTML5.
Stars: ✭ 49 (-24.62%)
Mutual labels:  html5
Fish
golang h5捕鱼游戏
Stars: ✭ 58 (-10.77%)
Mutual labels:  html5
Magz
Free Resonsive HTML5 & CSS3 Magazine Template
Stars: ✭ 64 (-1.54%)
Mutual labels:  html5
Pure Css3 Animated Border
Pure CSS3 animated border for all html element.
Stars: ✭ 63 (-3.08%)
Mutual labels:  html5
Web Code Standards
通过分析 Github 众多前端代码库,总结出来的前端代码书写规范。
Stars: ✭ 61 (-6.15%)
Mutual labels:  html5

简介

Travis license

现在随着宽带的降费提速,用户对于需要高网速、高流量的应用适应越来越强。现在 VR 也随着设备的普及慢慢进入大众,但是一个在线的 VR 应用对流量的要求也远远超过目前的运营商能提供的网速上限,特别是一些 VR 视频大户,常常推出的视频就是 10K 的大小。

现在 Web 对 VR 支持度也不是特别友好,但是,对于全景视频来说,在机器换代更新的前提下,全景在性能方面的瓶颈慢慢消失了。所以,基于此情况,该项目专门针对 720° 全景视频而开发。

特性

  • 依赖于 Three.js,需要预先挂载到 window 对象上
  • 灵活配置,内置支持陀螺仪和 touch 控制。
  • 支持灵敏度参数的动态调整
  • 使用 ES6 语法
  • 兼容 React,jQuery

安装

腾讯内部开发者,使用 tnpm 进行下载:

tnpm install iv-panorama

外部开发者,直接通过 npm 下载:

npm install iv-panorama

使用方法

通过 import 导入模块,在实例化时,传入相关的参数定义。

import VRPlayer from 'iv-panorama';

new VRPlayer({
        player: {
            url: '/test/003.mp4'
        },
        container:document.getElementById('container')
    });

如果想预览全景图片,则直接传入 image 参数:

let panorama = new VRPlayer({
    image: {
            url: './banner.png'
        },
        container:document.getElementById('container')
    });

相关的资源,在 github 仓库的 example 文件夹里面。

demo 预览

下载:

tnpm install http-server -g

然后,直接运行:

tnpm run compile

文档

API

许可证

iv-panorama is under the Apache License. See the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].