Sfoglia il codice sorgente

Fixed hotspot tooltip centering.

pull/8/head
Matthew Petroff 10 anni fa
parent
commit
20b33394c6
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      src/js/pannellum.js

+ 2
- 2
src/js/pannellum.js Vedi File

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


Caricamento…
Annulla
Salva