Cross Browsing
view
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.scroll-watcher {
position: fixed;
top: 0;
z-index: 800;
width: 100%;
height: 10px;
background-color: lime;
scale: 0 1;
animation: scroll-watcher linear;
animation-timeline: scroll();
transform-origin: left;
}
@keyframes scroll-watcher {
to { scale: 1 1;}
}