blob: 62fd5da4182bf45cd7960785839397f78b2534f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<style>
.fixed {
position: fixed;
background-color: #aef;
width: 100px;
height: 100px;
top: 100px;
}
</style>
<div style="height: 1000px"></div>
<div class="fixed" style="left: 200px"></div>
<div class="fixed" style="left: 400px; will-change: transform"></div>
<script>
scrollBy(0, 120);
</script>
|