blob: dd93e0b498c3650812eb126fb6d7422a715a474f (
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://github.com/WICG/view-transitions">
<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>
|