项目文件夹

文件
2021-10-19 15:34:56 +03:00

16 行
250 B
SCSS

// Ripple effect
.ripple {
display: block;
position: absolute;
background: rgba($white, .3);
border-radius: 100%;
transform:scale(0);
animation:ripple 0.65s linear;
}
@keyframes ripple {
100% {opacity: 0; transform: scale(2.5);}
}