16 lines
359 B
HTML
16 lines
359 B
HTML
<!DOCTYPE html>
|
|
<title>View transitions: Modify style via CSSOM (ref)</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
|
|
<link rel="author" href="mailto:khushalsagar@chromium.org">
|
|
<style>
|
|
#box {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: limegreen;
|
|
}
|
|
#box {
|
|
transform: translateY(100px);
|
|
}
|
|
|
|
</style>
|
|
<div id="box"></div>
|