Skip to content

Instantly share code, notes, and snippets.

@mcattx
Created February 24, 2018 13:11
Show Gist options
  • Save mcattx/1bc94907360c57a55fb63f86de92f254 to your computer and use it in GitHub Desktop.
Save mcattx/1bc94907360c57a55fb63f86de92f254 to your computer and use it in GitHub Desktop.
涟漪波纹按钮 #css
/*<button></button>*/
button {
width: 59px;
height: 59px;
border: 1px solid #eee;
border-radius: 100%;
background-color: #fff;
cursor: pointer;
}
button:hover {
border-color: #03a87c;
color: #03a87c;
fill: #03a87c;
animation: pulse-shadow--collection 2s infinite;
-webkit-animation: pulse-shadow--collection 2s infinite
}
@keyframes pulse-shadow--collection{
0%{-webkit-box-shadow:0 0;box-shadow:0 0}
70%{-webkit-box-shadow:0 0 5px 10px rgba(255,255,255,0);box-shadow:0 0 5px 10px rgba(255,255,255,0)}
100%{-webkit-box-shadow:0 0 0 0 rgba(255,255,255,0);box-shadow:0 0 0 0 rgba(255,255,255,0)}
}
@-webkit-keyframes pulse-shadow--collection{
0%{-webkit-box-shadow:0 0;box-shadow:0 0}
70%{-webkit-box-shadow:0 0 5px 10px rgba(255,255,255,0);box-shadow:0 0 5px 10px rgba(255,255,255,0)}
100%{-webkit-box-shadow:0 0 0 0 rgba(255,255,255,0);box-shadow:0 0 0 0 rgba(255,255,255,0)}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment