<button onclick="toggleBox()" class="btn">Toggle Box</button>
<div id="box" class="animated-box" hidden>
I can animate from display: none!
</div>
Back to Snippets
Smooth Entry with @starting-style
Animate elements smoothly even when they transition from `display: none`. This modern CSS snippet uses the new `@starting-style` rule to enable fade-in and slide-up effects for popups and dropdowns.
464