使用 autoRotate 参数使全景图 自动旋转
autoRotate参数的值应该是一个数字,用来指定全景图每秒旋转的角度
使用 autoRotateInactivityDelay 参数使全景图如果在指定毫秒内没有和用户进行交互,就开始自动旋转
效果:
代码:
<!DOCTYPE HTML>
<html lang="ch">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author"content=“KaiSarH,huankai7@163.com”>
<title>Auto rotate</title>
<link rel="stylesheet" href="pannellum.css"/>
<script type="text/javascript" src="pannellum.js"></script>
<style>
#panorama {
width: 1200px;
height: 800px;
}
</style>
</head>
<body>
<div id="panorama"></div>
<script>
pannellum.viewer('panorama', {
"type": "equirectangular",
"panorama": "test/test6.jpg",
// 点击屏幕后,两秒没有交互的话继续旋转
"autoRotateInactivityDelay":2000,
// 每秒顺时针旋转两度
"autoRotate": -2
});
</script>
</body>
</html>
总结: