blob: 9d9cfa06bed76106dc14e60db82aee164b1d2824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<title>View transitions: capture opacity elements (ref)</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<link rel="author" href="mailto:vmpstr@chromium.org">
<style>
span {
background: lightgreen;
position: fixed;
top: 50px;
left: 50px;
}
body { background: lightpink; }
</style>
<span>This is a span</span>
|