Ver a proveniência

Add files via upload

pull/1131/head
Wolfshe há 1 ano
committed by GitHub
ascendente
cometimento
15ef86b19d
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com 17 adições e 0 eliminações
  1. +17
    -0
      src/js/pannellum.js

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

@@ -1863,6 +1863,23 @@ function createHotSpot(hs) {
else else
div.className += ' pnlm-hotspot pnlm-sprite pnlm-' + escapeHTML(hs.type); 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'); var span = document.createElement('span');
if (hs.text) if (hs.text)
span.innerHTML = escapeHTML(hs.text); span.innerHTML = escapeHTML(hs.text);


Carregando…
Cancelar
Guardar