blob: f7bba2d683c740844cfef1d6ac5f03cbf9f39f05 (
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://drafts.csswg.org/css-view-transitions-1/">
<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>
|