Skip to content

Instantly share code, notes, and snippets.

@EbiseLutica
Created September 25, 2018 09:03
Show Gist options
  • Save EbiseLutica/ee04067fd46ceeaa5915cf4cd027cc4d to your computer and use it in GitHub Desktop.
Save EbiseLutica/ee04067fd46ceeaa5915cf4cd027cc4d to your computer and use it in GitHub Desktop.
PdrNMo
button(type="button" onclick="Toggle();" style="color: red; font-size: 32px") test
.wrapper
#box lorem ipsum dolor sit amet A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
const box = document.getElementById("box");
function Toggle() {
box.classList.toggle("away");
}
.wrapper {
width: 8rem;
perspective: 800px;
transform-style: preserve-3d;
position: relative;
height: 100vh;
}
#box {
display: block;
width: 4rem;
left: 2rem;
height: auto;
top: 64px;
background-color: white;
border-radius: 1rem;
padding: 1rem;
box-shadow: 0 0 1rem;
position: absolute;
transition: all 0.2s ease;
&.away {
transform: translateY(-300px) translateZ(-600px);
z-index: -100px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment