Skip to content

Instantly share code, notes, and snippets.

@juniorinvernizzi
Last active March 17, 2022 19:01
Show Gist options
  • Save juniorinvernizzi/89f66b133271789dbd0b7b8dbaf0dbfa to your computer and use it in GitHub Desktop.
Save juniorinvernizzi/89f66b133271789dbd0b7b8dbaf0dbfa to your computer and use it in GitHub Desktop.
Add no CSS
.botao-pulsar .elementor-button {
animation: pulsar 2s infinite;
}
.botao-pulsar .elementor-button:hover {
animation: none;
}
@keyframes pulsar {
0% {
-moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
box-shadow: 0 0 0 0 rgba(0,0,0, 0.4);
}
70% {
-moz-box-shadow: 0 0 0 8px rgba(0,0,0, 0);
box-shadow: 0 0 0 8px rgba(0,0,0, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
box-shadow: 0 0 0 0 rgba(0,0,0, 0);
}
}
@-webkit-keyframes pulsar {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
}
70% {
-webkit-box-shadow: 0 0 0 8px rgba(0,0,0, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment