blob: 1dc431bd63ee0f48476ddd7489c2e2e9d3014230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<style>
.fixed {
position: absolute;
background-color: #aef;
width: 100px;
height: 100px;
top: 220px;
}
</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>
|