vue预览全景图片

vue预览全景图片

  • 安装
shell 复制代码
npm i photo-sphere-viewer --save
  • 使用
html 复制代码
<template>
	<div id="pano" ref="panoshow"></div>
</template>

<script>
import { Viewer } from "photo-sphere-viewer";
import "photo-sphere-viewer/dist/photo-sphere-viewer.css";

export default {
	name: "HomeView",
	data() {
		return {
			PSV: null,
		};
	},
	mounted() {
		this.$nextTick(() => {
			this.initPhotoSphere();
		});
	},
	methods: {
		initPhotoSphere() {
			this.PSV = new Viewer({
				container: document.getElementById("pano"),
				panorama: require("../assets/img/1.jpg"),
				autorotateDelay: true,
				autorotateSpeed: 0,
				size: {
					width: "100%",
					height: "100%",
				},
				maxFov: 100,
				minFov: 10,
				navbar: false,
			}).on("ready", () => {
				console.log("pano ok");
			});
		},
	},
};
</script>

附件

相关推荐
yuguo.im10 小时前
Chrome DevTools Performance 是优化前端性能的瑞士军刀
前端·javascript·性能优化·chrome devtools
FSHOW11 小时前
【独立开发日记】MQ端到端类型安全
前端·javascript·后端
老华带你飞12 小时前
社区互助|基于SSM+vue的社区互助平台的设计与实现(源码+数据库+文档)
java·前端·数据库·vue.js·小程序·毕设·社区互助平台
chxii13 小时前
7.2elementplus的表单布局与模式
javascript·vue.js·elementui
Js_cold13 小时前
Notepad++使用技巧1
前端·javascript·fpga开发·notepad++
dreams_dream13 小时前
vue中的与,或,非
前端·javascript·vue.js
柳杉14 小时前
使用three.js搭建3d隧道监测-3
前端·javascript·three.js
1024小神14 小时前
vue/react项目如何跳转到一个已经写好的html页面
vue.js·react.js·html
lggirls16 小时前
特殊符号在Html中的代码及常用标签格式的记录
前端·javascript·html
deepdata_cn17 小时前
基于JavaScript的智能合约平台(Agoric)
javascript·区块链·智能合约