1.波纹
(1)html
<div class="kefu" style="display: block;">
<div class="round"></div>
<div class="img">
<div class='img_fff'></div>
</div>
</div>
(2)css
*{
margin: 0;
padding: 0;
}
.kefu {
width: 120px;
height: 120px;
position: fixed;
z-index: 50;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
.kefu .img {
width:86px;
height:86px;
position: absolute;
display: block;
left: 50%;
top: 50%;
margin-left: -43px;
margin-top: -43px;
background-color:#baedcd;
border-radius:100%;
-webkit-border-radius:100%;
-moz-border-radius:100%;
}
.kefu .img_fff{
width:66px;
height:66px;
position: absolute;
display: block;
left: 50%;
top: 50%;
margin-left: -33px;
margin-top: -33px;
background-color:#fff;
border-radius:100%;
-webkit-border-radius:100%;
-moz-border-radius:100%;
}
.round {
width: 120px;
height: 120px;
border-radius: 50%;
background-color: #baedcd;
text-align: center;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation-name: mymove;
animation-name: mymove;
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-iter