Created
July 28, 2021 17:11
-
-
Save strarsis/22192cddf6dbcfd83b26f9950954ef51 to your computer and use it in GitHub Desktop.
Disappearing element with perspective/transform: perspective issue (Chrome) (iframe content)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<style> | |
/* Pannellum hotspot element */ | |
.hotspot { | |
width: 24px; | |
height: 24px; | |
background: red; | |
transform: translate(100px, 150px) translateZ(9999px); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="hotspot"></div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment