瀏覽代碼

Image hotspots too

pull/12/head
Guillaume de Bure 10 年之前
父節點
當前提交
7b2daaca77
共有 1 個文件被更改,包括 12 次插入1 次删除
  1. +12
    -1
      src/js/pannellum.js

+ 12
- 1
src/js/pannellum.js 查看文件

@@ -493,7 +493,18 @@ function createHotSpots() {
video.setAttribute('controls',true);
video.setAttribute('width',hs.width);
document.getElementById('page').appendChild(div);
span.appendChild(video)
span.appendChild(video);
} else if (hs.image) {
var a = document.createElement('a');
a.setAttribute('href', hs.image);
a.setAttribute('target', '_blank');
span.appendChild(a);
var image = document.createElement('img');
image.setAttribute('src',hs.image);
image.setAttribute('width',hs.width);
document.getElementById('page').appendChild(div);
a.appendChild(image);
} else {
if(hs.sceneId) {
div.onclick = function() {


Loading…
取消
儲存