blob: b95233d71238233cbfe3ee59ae521164be893842 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<title>View transitions: capture opacity elements (ref)</title>
<link rel="help" href="https://github.com/WICG/view-transitions">
<link rel="author" href="mailto:vmpstr@chromium.org">
<style>
span {
background: lightgreen;
view-transition-name: span;
}
body { background: lightpink; }
</style>
<span>This is a span</span>
|