Forum Discussion
Hiding hotspots 100% in a 360 image?
Hi everyone,
I had the same wish as you and I fixed it :-) Instead of hiding the hand cursor while hovering over a hotspot, I changed the cursor to be always the 'hand cursor', so there is no change if you hover. It is done via 2 lines of JS (Add Trigger -> Execute JS when timeline starts on this slide):
Changes cursor to be always a hand cursor:
let element = document.getElementById("slide");
element.style.cursor = "pointer";
All following slides will permanently show the hand cursor as long as you don't change it back via JS (Add Trigger -> Execute JS when timeline starts on this slide):
Changes cursor back to default behaviour:
let element = document.getElementById("slide");
element.style.cursor = "default";
Hope that solves your problems too and is more challenging to your learners :-)
Regards, Erich