
演 示
免费下载
简介
```
##### CSS样式
在点击用户图像的时候,该特效使用了一些点击波特效,它是使用CSS3 animation动画来制作的。
```html
.ripple {
position: absolute;
width: 10rem;
height: 10rem;
margin-left: -5rem;
margin-top: -5rem;
background: rgba(0, 0, 0, 0.4);
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-animation: animRipple 0.3s;
animation: animRipple 0.3s;
border-radius: 50%;
}
@-webkit-keyframes animRipple {
to {
-webkit-transform: scale(2.5);
transform: scale(2.5);
opacity: 0;
}
}
@keyframes animRipple {
to {
-webkit-transform: scale(2.5);
transform: scale(2.5);
opacity: 0;
}
}
```