Unnecessary View Transitions

Adapted from Adam Argyle's transition.style.

::view-transition-old(root) {
  animation: none;
  z-index: 1;
}

::view-transition-new(root) {
  animation: circle-in-center 2.5s cubic-bezier(.25, 1, .30, 1) both;
  z-index: 2;
}

@keyframes circle-in-center {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(125%);
  }
}

Back to list