summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/scroll-animations/css/animation-fill-outside-range-ref.html
blob: 998576b3a4f2257006232506ee32306bc716895c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="help" src="https://drafts.csswg.org/scroll-animations-1/">
<script src="/web-animations/testcommon.js"></script>
<style>
  .scroller {
    height: 200px;
    width: 500px;
    overflow: auto;
    position: absolute;
    top: 100px;
  }

  .anim {
    position: absolute;
    width: 100px;
    height: 100px;
    background: darkred;
  }
  .anim.contain {
    background: green;
  }
  .spacer {
    height: 1000px;
  }

  .before {
    top: 450px;
  }
  .after {
    top: 50px;
  }
  .contain {
    top: 250px;
  }
  .indicator {
    position: fixed;
    top: 50px;
  }
  .contain .indicator {
    top: 100px;
  }
  .contain .indicator:nth-child(2) {
    left: 200px;
  }

  .after .indicator {
    left: 200px;
  }

  .indicator > div {
    display: inline-block;
    width: 25px;
    height: 25px;
    position: relative;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid black;
    padding: 3px;
    background: lightgray;
    background-clip: content-box;
  }

  .indicator > div > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: green;
    opacity: 1;
    will-change: opacity;
  }

</style>
</head>
<body>
  <p>All of the activity indicators should be active as the animations should be filling.</p>
  <div class="scroller">
    <div class="anim after"><div class="indicator">After cover phase: <div><div></div></div></div></div>
    <div class="anim before"><div class="indicator">Before cover phase: <div><div></div></div></div></div>
    <div class="anim contain">
      <div class="indicator entry">After entry phase: <div><div></div></div></div>
      <div class="indicator exit">Before exit phase: <div><div></div></div></div>
    </div>
    <div class="spacer"></div>
  </div>
</body>
<script>
  function run() {
    let scroller = document.querySelector('.scroller');
    scroller.scrollTo({top: 200});
  }
  run();
</script>
</html>