Close with a flap
Close a panelFlips open 155° around its left edge.
- Duration
- 0.3s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- 3D turn rotateY
Show CSS
@keyframes onoma-patan {
0% { transform: perspective(400px) rotateY(0deg); }
100% { transform: perspective(400px) rotateY(-155deg); }
}
.onoma-patan {
animation: onoma-patan 0.3s ease-in-out both;
transform-origin: 0% 50%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-patan { animation: none; }
}