我是靠谱客的博主 真实口红,最近开发中收集的这篇文章主要介绍vue组件使用 - photo-sphere-viewer加载360°全景图片,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

博客力求最简单,最有效,尽量少用术语。

第一步:安装依赖

npm install three --save
npm install photo-sphere-viewer --save

第二步:引入依赖并使用

import PhotoSphereViewer from 'photo-sphere-viewer'
import 'photo-sphere-viewer/dist/photo-sphere-viewer.css'
this.displayPanoramadata = true
this.panoramadata = PhotoSphereViewer({
  container: this.div, // 必须的参数:绑定的容器
  panorama: this.imgurl, // 必须的参数:图片路径
  size: {
    width: '680',
    height: '400'
  }
})
}

这样就可以配置一个最初级的全景浏览。

番外:参数配置:

这里只列举了一些常见的配置,更加详细的配置可以自行查找。

番外:效果图:

最后

以上就是真实口红为你收集整理的vue组件使用 - photo-sphere-viewer加载360°全景图片的全部内容,希望文章能够帮你解决vue组件使用 - photo-sphere-viewer加载360°全景图片所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部