Welcome to Digital Magazine
- Tap anywhere to start
- Audio will play after first tap
- Swipe or click to change pages
- Tap images for zoom & gallery
- Videos may show ads - tap skip
Tap anywhere to begin
function highlightHotspots(){
let hs = document.querySelectorAll(".hotspot")
hs.forEach(h=>{
h.style.outline="2px solid rgba(0,255,255,0.4)"
})
setTimeout(()=>{
hs.forEach(h=>{
h.style.outline="none"
})
},800)
}