forked from csstrick/HTML-CSS-js.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwave.html
81 lines (74 loc) · 1.52 KB
/
wave.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body
{
background-color: gray;
}
#wave-button {
position: relative;
width: 200px;
height: 50px;
border: none;
border-radius: 25px;
background-color: #4CAF50;
color: white;
font-size: 16px;
cursor: pointer;
overflow: hidden;
margin: auto;
left:300px;
top: 200px;
}
#wave-button::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 25px;
background-color: rgba(255, 255, 255, 0.3);
opacity: 0;
transition: opacity 0.5s ease-out;
}
.wave {
position: absolute;
width: 50px;
height: 50px;
border-radius: 25px;
background-color: rgba(0, 0, 0, 0.3);
transform: scale(0);
animation: wave 1s linear;
animation-fill-mode: forwards;
}
@keyframes wave {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(10);
opacity: 0;
}
}
</style>
</head>
<body>
<button id="wave-button">Click me</button>
</body>
<script>
const waveButton = document.getElementById("wave-button");
waveButton.addEventListener("click", function() {
const wave = document.createElement("span");
wave.classList.add("wave");
this.appendChild(wave);
setTimeout(() => wave.remove(),600);
});
</script>
</html>