| <!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> |