소스 검색

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() {


불러오는 중...
취소
저장