-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-scroll.html
87 lines (77 loc) · 2.4 KB
/
index-scroll.html
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scroll Progress Timelineのデモ</title>
<link rel="stylesheet" href="./style/base.css">
<style>
body {
height: 200vh; /* スクロールが発生するよう適当な高さを確保 */
display: flex;
flex-direction: column;
align-items: center;
}
.skeleton {
height: 85%;
width: 70vw;
background-image: repeating-linear-gradient(#eff3f6, #eff3f6 20px, #e1e9ef 20px, #e1e9ef 40px);
}
/* 垂直方向にスケールを変えるキーフレーム */
@keyframes grow-progress {
from {
scale: 1 0;
}
to {
scale: 1 1;
}
}
.animationElement {
/* スタイリング */
position: fixed;
top: 50%;
left: 30%;
width: 100px;
height: 100px;
background: royalblue;
transform-origin: bottom; /* 下部を変形の基準にしておく */
/* スクロールアニメーションの設定 */
animation: grow-progress linear; /* アニメーションを指定。イージングはlinear */
animation-timeline: scroll();
}
/* ------------ アレンジバージョン ------------ */
.drop {
position: fixed;
top: 50%;
right: 30%;
width: 100px;
height: 100px;
background: white;
/* 💧雫型のマスク */
clip-path: path("m58,70.879c0,16.083-12.984,29.121-29,29.121S0,86.962,0,70.879,29,0,29,0c0,0,29,54.797,29,70.879Z");
}
.drop_inner {
display: block;
width: 100%;
height: 100%;
background: royalblue;
transform-origin: bottom; /* 下部を変形の基準にする */
animation: grow-progress linear;
animation-timeline: scroll();
}
</style>
</head>
<body>
<p class="announceText">↓スクロールしてください</p>
<div class="skeleton"></div>
<div class="animationElement"></div>
<div class="drop"><span class="drop_inner"></span></div>
<nav class="navigation">
<ul>
<li class="navigation_currentPage"><span>■</span>Scroll Progress Timelineのデモ</li>
<li><span>■</span><a href="./index-view.html">View Progress Timelineのデモ</a></li>
<li><span>■</span><a href="./index.html">2種類のタイムラインを応用した作例ページへ</a></li>
</ul>
</nav>
</body>
</html>