31 lines
562 B
HTML
31 lines
562 B
HTML
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
|
|
<style>
|
|
|
|
.transformed {
|
|
width: 60px;
|
|
height: 60px;
|
|
transform: perspective(500px) translate3d(500px, 0, 0px);
|
|
background-color: pink;
|
|
}
|
|
|
|
.top {
|
|
position: fixed;
|
|
z-index: 1000;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 50px;
|
|
background-color: lightblue;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="top">Header</div>
|
|
<div style="height: 3000px; background-color: antiquewhite;">
|
|
</div>
|
|
<button>Click me</button>
|
|
<div class="transformed"></div>
|
|
</body>
|