forked from soyaine/JavaScript30
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-SOYAINE2.html
147 lines (130 loc) · 3.31 KB
/
index-SOYAINE2.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>改进后 - Flex Panels 💪 </title>
<link href='https://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
</head>
<body>
<style>
html {
box-sizing: border-box;
background:#ffc600;
font-family:'helvetica neue';
font-size: 20px;
font-weight: 200;
}
body {
margin: 0;
}
*, *:before, *:after {
box-sizing: inherit;
}
.panels {
min-height:100vh;
overflow: hidden;
display: flex;
}
.panel {
/* 调试时添加边框以便分辨*/
/* border: 1px solid #f00;*/
background:#6B0F9C;
box-shadow:inset 0 0 0 5px rgba(255,255,255,0.1);
color:white;
text-align: center;
align-items:center;
/* Safari transitionend event.propertyName === flex */
/* Chrome + FF transitionend event.propertyName === flex-grow */
transition:
font-size 0.7s cubic-bezier(0.61,-0.19, 0.7,-0.11),
flex 0.7s cubic-bezier(0.61,-0.19, 0.7,-0.11),
background 0.2s;
font-size: 20px;
background-size:cover;
background-position:center;
flex: 1;
display: flex;
justify-content: center;
flex-direction: column;
}
.panel1 { background-image:url(https://source.unsplash.com/UdgvzNom0Xs/1500x1500); }
.panel2 { background-image:url(https://source.unsplash.com/fHXP17AxOEk/1500x1500); }
.panel3 { background-image:url(https://source.unsplash.com/3IEZsaXmzzs/1500x1500); }
.panel4 { background-image:url(https://source.unsplash.com/tNDvFkxkBHo/1500x1500); }
.panel5 { background-image:url(https://source.unsplash.com/GEJxI_QRPwM/1500x1500); }
.panel > * {
margin: 0;
width: 100%;
transition:transform 0.5s 0.7s;
align-items: center;
display: flex;
flex: 1 0 auto;
justify-content: center;
}
.panel p {
text-transform: uppercase;
font-family: 'Amatic SC', cursive;
text-shadow:0 0 4px rgba(0, 0, 0, 0.72), 0 0 14px rgba(0, 0, 0, 0.45);
font-size: 2em;
}
.panel p:nth-child(2) {
font-size: 4em;
}
.panel.open {
font-size:40px;
flex: 5;
}
.panel p:first-child {
transform: translateY(-100%);
}
.panel p:last-child {
transform: translateY(100%);
}
.panel.open p:first-child {
transform: translateY(0);
}
.panel.open p:last-child {
transform: translateY(0);
}
.cta {
color:white;
text-decoration: none;
}
</style>
<div class="panels">
<div class="panel panel1">
<p>Hey</p>
<p>Let's</p>
<p>Dance</p>
</div>
<div class="panel panel2">
<p>Give</p>
<p>Take</p>
<p>Receive</p>
</div>
<div class="panel panel3">
<p>Experience</p>
<p>It</p>
<p>Today</p>
</div>
<div class="panel panel4">
<p>Give</p>
<p>All</p>
<p>You can</p>
</div>
<div class="panel panel5">
<p>Life</p>
<p>In</p>
<p>Motion</p>
</div>
</div>
<script>
const panels = document.querySelectorAll('.panel');
function toggleOpen(e) {
// console.log(this);
this.classList.toggle('open');
}
panels.forEach( panel => panel.addEventListener('click', toggleOpen, false));
</script>
</body>
</html>