In case I have to make a copy I usually prefer or suggest when it’s possible, to use personal images than something that anyone could copy. But in this case a trip to Cairo to take some photos of the faraon’s sarcophagus it would be quite expensive. So I used one of the best images of the National Geographic which I modified a bit.

// Passive event listeners jQuery.event.special.touchstart = { setup: function( _, ns, handle ) { this.addEventListener("touchstart", handle, { passive: !ns.includes("noPreventDefault") }); } }; jQuery.event.special.touchmove = { setup: function( _, ns, handle ) { this.addEventListener("touchmove", handle, { passive: !ns.includes("noPreventDefault") }); } };