blob: 0087c2e85dd4ac44fa39b65ee3a77bb23568b149 [file]
<!DOCTYPE html>
<html>
<head>
<meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-30">
<style>
body {
perspective: 500px;
perspective-origin: 100px 150px;
height: 1000px;
}
.box {
position: fixed;
left: 100px;
top: 100px;
width: 250px;
height: 200px;
padding: 20px;
background-color: blue;
}
</style>
<script>
window.addEventListener('load', () => {
window.scrollTo(0, 200);
}, false);
</script>
</head>
<body>
<div class="box" style="transform: rotateY(45deg)"></div>
</body>
</html>