blob: e5a94813e8dfffd35f15ee9e2cce67c39e88c8d8 [file] [log] [blame]
<!--
Copyright 2020 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!DOCTYPE html>
<meta charset="utf-8">
<style>
#next {
display: none;
}
::view-transition-old(root) {
animation-duration: 10s;
}
</style>
<div id="first">Initial state</div>
<div id="next">Next state</div>
<script>
const first = document.querySelector('#first');
const next = document.querySelector('#next');
const start = document.querySelector('#start');
async function startFirstViewTransition() {
const vt = document.startViewTransition(() => {
first.style.display = "none";
next.style.display = "block";
});
await vt.ready;
}
async function startNextViewTransition() {
const vt = document.startViewTransition(() => {
first.style.display = "block";
next.style.display = "none";
});
await vt.ready;
}
</script>