blob: 503418c3dc647f141b63bdc601a137841942ed2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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>
|