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

news/2024/11/23 2:50:31/

依赖:npm install photo-sphere-viewer --save-dev

代码:

<template><div class="demo-container"><!-- 测试 --><div id="viewer"></div></div>
</template><script>
import { Viewer } from "photo-sphere-viewer";
import "photo-sphere-viewer/dist/photo-sphere-viewer.css";export default {data() {return {viewer: "",img: "https://img0.baidu.com/it/u=2063349374,2152739293&fm=253&fmt=auto&app=138&f=JPEG?w=843&h=500",};},mounted() {this.getViewer();},methods: {getViewer() {this.viewer = new Viewer({container: document.getElementById("viewer"),panorama: this.img,size: {width: "886px",height: "554px",},// size: {//   width: screen.availWidth,//   height: screen.availHeight, //  自动全屏 可设置高度 上面注释掉了// },});},},
};
</script><style lang="scss" scoped>
</style>

效果图如下:

在这里插入图片描述

如果想要有场景切换自定义标注这个功能点击下方:

Vue使用photo-sphere-viewer360°×180°全景插件模拟VR看房、房间切换和自定义标注(有源码)

感觉文章好的话记得点个赞关注收藏,一键三连,有错的地方麻烦指正一下,多谢!!!


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

相关文章

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

疫情之下&#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…

vue实现vr看360°全景效果

1&#xff1a;首先创建一个vue的基础项目 vue create demo 2&#xff1a;启动并打开项目 3&#xff1a;在生成的public文件夹下找到Index.html&#xff0c;然后在script标签中引入three.js <script src"https://cdn.jsdelivr.net/npm/three0.93.0/build/three.min.js&…