vue 配合 photo-sphere-viewer 实现全景图展示

news/2024/11/23 2:23:12/

  项目中有个新需求展示全景图,也找过了多个插件,还是这个插件简单易懂。

一、下载依赖

npm install photo-sphere-viewer --save

yarn add photo-sphere-viewer

下载好依赖就可以开始使用了

二、使用

<!-- 全景看图 -->
<template><div><div class="PSViewer" ref="psvdbg"></div></div>
</template><script>
import { Viewer } from "photo-sphere-viewer";
import "photo-sphere-viewer/dist/photo-sphere-viewer.css";export default {data() {return {PSV: "",};},mounted() {this.init();},methods: {init() {let this_ = this;this.PSV = new Viewer({panorama: 'https://bbs.djicdn.com/data/attachment/forum/201711/12/121252sl9vnanggrvknz22.jpg', // 图片路径container: this_.$refs.psvdbg, // 容器autorotateDelay: 500,navbar: false,//是否展示工具栏size: {width: "100vw",height: "90vh",},});},},
};
</script>
<style lang='scss' scoped></style>

复制代码即可开箱使用。


http://www.ppmy.cn/news/280178.html

相关文章

Vue使用photo-sphere-viewer360°×180°全景图全网最新(二)

依赖:npm install photo-sphere-viewer --save-dev 代码&#xff1a; <template><div class"demo-container"><!-- 测试 --><div id"viewer"></div></div> </template><script> import { Viewer } from &…

如何免费下载高清全景图 :全景管家

疫情之下&#xff0c;加上互联网的冲击&#xff0c;&#x1f9cd;各个行业的实体店都非常艰难。客流量少&#xff0c;成本高&#xff0c;租金贵&#xff0c;时代在变&#xff0c;怎样才能提高客流量呢&#xff1f;那就用vr全景看看吧。如何下载适合商家的高清全景图&#xff1f…

18.5:给定一个栈,请逆序这个栈,不能申请额外的数据结构,只能使用递归函数

给定一个栈&#xff0c;请逆序这个栈&#xff0c;不能申请额外的数据结构&#xff0c;只能使用递归函数 package algorithmbasic.class18;import java.util.Stack;//给定一个栈&#xff0c;请逆序这个栈&#xff0c;不能申请额外的数据结构&#xff0c;只能使用递归函数 publi…

UE4_UE5全景相机

分享一个全景相机插件&#xff0c;可直接用于渲染全景视频、制作全景体验场景等使用。 一、分别提供了从UE4.25到UE5的版本 二、以及有各种业务场景下的使用教程视频 三、提供多个Map案例可参考使用 四、其中&#xff0c;最关键的就是Camera_point_360和Camera_rec_360的结合使…

Vue3 + Photo-sphere-viewer 全景

Photo Sphere Viewer是一款基于Three.js的360X180度全景图预览js插件。该js插件可以360度旋转查看全景图&#xff0c;也可以上下180度查看图片。使用该插件的唯一要求是浏览器支持canvas或WebGL。 这只是一个简单的全景图&#xff0c;我们还可以在全景图上面不同位置添加标注&a…

photo-sphere-viewer 全景图Vr 720全景查看(vue篇)

一、安装以及引入方式 npm install photo-sphere-viewer/core /***插件安装**/ npm install photo-sphere-viewer/markers-plugin npm install photo-sphere-viewer/gallery-plugin npm install photo-sphere-viewer/autorotate-plugin二、PhotoSphereViewer.vue <templat…

Unity 制作360全景视频 全景图片流程

Recorder的使用 在Unity制作360图片或者视频需要用到UnityPackage:Recorder 如果没有就在Package Manager寻找 1、在菜单栏找到Window/General/Recorder/RecorderWindow 参数说明: Animation Clip&#xff1a;录制动画剪辑 Movie&#xff1a;录制视频 Image Sequence&a…