css点状波动波纹扩散动画效果代码
代码语言:html
所属分类:动画
代码描述:css点状波动波纹扩散动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> .ripple { width: 1rem; /* control the size */ background: #ff0; /* control the color here */ } .ripple, .ripple::before, .ripple::after { content: ""; display: grid; grid-area: 1/1; aspect-ratio: 1; border-radius: 50%; box-shadow: 0 0 0 0 #ff03; /* and here, 3 is the transparency */ animation: r 3s linear infinite var(--s,0s); } .ripple::before {--s: 1s} .ripple::.........完整代码请登录后点击上方下载按钮下载查看
网友评论0