Skip to content

Instantly share code, notes, and snippets.

@strarsis
Created July 28, 2021 17:11
Show Gist options
  • Save strarsis/22192cddf6dbcfd83b26f9950954ef51 to your computer and use it in GitHub Desktop.
Save strarsis/22192cddf6dbcfd83b26f9950954ef51 to your computer and use it in GitHub Desktop.
Disappearing element with perspective/transform: perspective issue (Chrome) (iframe content)
<!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