瀏覽代碼

Actually fixed hotspot tooltip centering.

pull/8/head
Matthew Petroff 10 年之前
父節點
當前提交
df0f0d8cd0
共有 2 個文件被更改,包括 3 次插入3 次删除
  1. +1
    -1
      src/css/pannellum.css
  2. +2
    -2
      src/js/pannellum.js

+ 1
- 1
src/css/pannellum.css 查看文件

@@ -296,7 +296,7 @@ div.tooltip:hover:after {
border-style: solid;
border-color: rgba(0,0,0,0.7) transparent transparent transparent;
top: -12px;
left: 3px;
left: 0px;
}

#compass {


+ 2
- 2
src/js/pannellum.js 查看文件

@@ -497,8 +497,8 @@ function createHotSpots() {
}
span.innerHTML = hs.text;
div.appendChild(span);
span.style.width = span.scrollWidth - 26 + 'px';
span.style.marginLeft = -(span.scrollWidth - 26) / 2 + 'px';
span.style.width = span.scrollWidth - 20 + 'px';
span.style.marginLeft = -(span.scrollWidth - 20) / 2 + 'px';
span.style.marginTop = -span.scrollHeight - 12 + 'px';
hs.div = div;
});


Loading…
取消
儲存