<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>全景图像</title>
<link rel="stylesheet" href="path/to/pannellum.css" />
<script src="path/to/pannellum.js"></script>
<style>
html, body {
height: 100%;
margin: 0;
overflow: hidden; /* 防止滚动条出现 */
}
#panorama {
width: 100%;
height: 100%; /* 占满全屏 */
}
</style>
</head>
<body>
<div id="panorama"></div>
<script>
pannellum.viewer('panorama', {
"type": "equirectangular",
"panorama": "path/to/your/panorama.jpg", // 替换为你的全景图像路径
"autoLoad": true,
"showControls": true, // 显示控制条
"yaw": 0, // 初始偏航角
"pitch": 0, // 初始俯仰角
"roll": 0, // 初始滚转角
"mouse": {
"drag": true, // 启用鼠标拖动
"scrollZoom": true // 启用滚动缩放
},
"gesture": {
"drag": true, // 启用手势拖动(移动设备)
"scrollZoom": true // 启用手势缩放(移动设备)
},
"inertia": {
"enabled": true, // 启用惯性
"decay": 200 // 惯性衰减速度
}
});
</script>
</body>
</html>