Explorar el Código

Merge 15ef86b19d into 1eaccef60f

pull/1131/merge
Wolfshe hace 1 mes
committed by GitHub
padre
commit
22ac6e1494
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: B5690EEEBB952194
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. +17
    -0
      src/js/pannellum.js

+ 17
- 0
src/js/pannellum.js Ver fichero

@@ -1869,6 +1869,23 @@ function createHotSpot(hs) {
else
div.className += ' pnlm-hotspot pnlm-sprite pnlm-' + escapeHTML(hs.type);

if ( 'thumbnail' in hs ) {
let thumbnail = hs.thumbnail;
div.addEventListener("mouseenter",function(){
div.style.backgroundImage = `url(${thumbnail})`;
div.style.border = "solid";
div.style.backgroundPosition = "center";
div.style.backgroundSize = "contain";
})

div.addEventListener("mouseleave",function(){
div.style.backgroundImage = "";
div.style.border = "";
div.style.backgroundPosition = "";
div.style.backgroundSize = "";
})
}

var span = document.createElement('span');
if (hs.text)
span.innerHTML = escapeHTML(hs.text);


Cargando…
Cancelar
Guardar