15 lines
367 B
HTML
15 lines
367 B
HTML
<!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>
|
|
|