Entrances

Slide In Up Animation

Rises into place from below without fading.

Card title

Supporting copy goes here.

Edit this in the studio

Opens with this animation loaded. Nothing is uploaded — the scene travels in the link.

animation.css
.slide-in-up {
  transform: translate3d(130px, 90px, 0);
  box-shadow: 0px 10px 30px 0px #00000059;
  width: 220px;
  height: 140px;
  background: #1c1e2a;
  border-radius: 18px;
  color: #e7e9ee;
  font-size: 14px;
  animation: slide-in-up-anim 600ms linear 0ms infinite both;
  will-change: transform, opacity;
}

@keyframes slide-in-up-anim {
  0% {
    transform: translate3d(130px, 390px, 0);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translate3d(130px, 90px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide-in-up {
    animation: none;
    transition: none;
  }
}

Why it is built this way

The bottom-sheet entrance. Keeping opacity at one throughout is what sells it as a surface being dragged up rather than a layer being revealed.

What it animates

1 property across 1 CSS declaration. The bar shows when each one is moving.

Y
transform
300 0px
2 stopscompositor

What it costs to run

Y is handled by the compositor: no layout, no repaint, and the work can run off the main thread. This is the cheap end of CSS animation, which is why it stays smooth on a slow phone where other properties will not.

It runs for 0.60s across 2 keyframe stops, with every property moving over the same window.

One curve throughout: Ease Out on a card. Keeping a single easing across every property is what makes a multi-property animation read as one movement rather than several things happening at once.

Accessibility

Nothing here hides content — y moves over 0.60s and the element is visible throughout. The exported prefers-reduced-motion guard still silences it, which matters most for the looping ones: motion that never stops is the kind that makes people feel unwell.

Related animations

slideupentrancesheet