blob: ce087d8846316fb1e4f5c0b2d1087bf73763ec0f [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- TODO update link -->
<link rel="help" href="https://www.w3.org/TR/css-view-transitions-2/">
</head>
<style>
#target {
background-color: blue;
height: 100px;
width: 100px;
position: relative;
view-transition-name: target;
opacity: 0.5;
z-index: 1;
}
</style>
<body>
<div id="target"></div>
</body>
</html>