blob: 466b52c3a1975f2d314cfcfd8ab08d298d30a39b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE HTML>
<html>
<body>
<div style="width:100px; height:100px; background-color:green"></div>
<div style="width:100px; height:100px; overflow:hidden">
<div style="transform: translateY(-100px) perspective(1px); will-change:transform">
<div style="background-color:red; width:100px; height:100px"></div>
<div style="background-color:green; width:100px; height:100px"></div>
</div>
</div>
</body>
</html>
|