forked from wesbos/es6.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharrow-functions-this-ANSWER.html
82 lines (71 loc) · 1.55 KB
/
arrow-functions-this-ANSWER.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Arrow Functions</title>
</head>
<body>
<style>
.wrap {
min-height: 100vh;
display:flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
font-weight: 100;
color:white;
}
.box {
background:black url(https://unsplash.it/1500/1500?image=560&blur=0.5) center fixed no-repeat;
width:50px;
height:50px;
padding:50px;
transition: width 0.2s, height 0.6s;
position: relative;
}
.box.opening {
width:500px;
height:500px;
}
.box h2 {
position: absolute;
width:100%;
font-size: 100px;
transform:translateX(-200%);
transition: all 0.5s;
top:0;
}
.box p {
position: absolute;
width:100%;
transform:translateX(200%);
transition: all 0.5s;
bottom:0;
}
.box.open > * {
transform:translateX(0%);
}
</style>
<div class="wrap">
<div class="box">
<h2>Wes Bos</h2>
<p class="social">@wesbos</p>
</div>
</div>
<script>
const box = document.querySelector('.box');
box.addEventListener('click', function() {
let first = 'opening';
let second = 'open';
if(this.classList.contains(first)) {
// switch them
[first, second] = [second, first];
}
this.classList.toggle(first);
setTimeout(() => {
this.classList.toggle(second);
}, 250);
});
</script>
</body>
</html>