-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton-pulse-shadow.css
54 lines (47 loc) · 1.49 KB
/
button-pulse-shadow.css
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
/* Botão com animação de pulso, fazendo-o aumentar levemente de tamanho e criar uma sombra amarela pulsante. */
selector .elementor-button {
-webkit-box-shadow: 0 0 0 0 #000;
box-shadow: 0 0 0 0 #000;
-webkit-animation: pulse-white 2s infinite;
animation: pulse-white 2s infinite;
}
@-webkit-keyframes pulse-white {
0% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 0 #FFEC43;
box-shadow: 0 0 0 0 #FFEC43;
}
70% {
-webkit-transform: scale(1.01);
transform: scale(1.01);
-webkit-box-shadow: 0 0 0 10px transparent;
box-shadow: 0 0 0 10px transparent;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}
@keyframes pulse-white {
0% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 0 #FFEC43;
box-shadow: 0 0 0 0 #FFEC43;
}
70% {
-webkit-transform: scale(1.01);
transform: scale(1.01);
-webkit-box-shadow: 0 0 0 10px transparent;
box-shadow: 0 0 0 10px transparent;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}