Explorar el Código

Actually fixed hotspot tooltip centering.

pull/8/head
Matthew Petroff hace 10 años
padre
commit
df0f0d8cd0
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. +1
    -1
      src/css/pannellum.css
  2. +2
    -2
      src/js/pannellum.js

+ 1
- 1
src/css/pannellum.css Ver fichero

@@ -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 Ver fichero

@@ -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;
});


Cargando…
Cancelar
Guardar