首页 前端知识 CSS水波纹效果

CSS水波纹效果

2024-04-18 00:04:29 前端知识 前端哥 781 115 我要收藏

效果图:

1.创建一个div

<div class="point1" @click="handlePoint(1)"></div>
复制

2.设置样式

.point1{
width: 1rem;
height: 1rem;
background: #2ce92f;
position: absolute;
border-radius: 50%;
z-index: 999;
cursor: pointer;
}
复制

3.设置伪元素样式

.point1::after {
width: 100%;
height: 100%;
content: "";
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
z-index: -2;
background-color: #2ce92f;
animation: dot-play 4s linear 400ms infinite;
}
.point1::before {
width: 100%;
height: 100%;
content: "";
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
background-color: #2ce92f;
animation: dot-play 4s linear 200ms infinite;
animation-delay: 2s; /* 延迟 2s */
}
复制

4.设置动画效果

@keyframes dot-play {
from {
transform: scale(1);
opacity: 0.8;
}
to {
transform: scale(4);
opacity: 0.1;
}
}
复制

转载请注明出处或者链接地址:https://www.qianduange.cn//article/5108.html
标签
评论
还可以输入200
共0条数据,当前/页
发布的文章

JQuery中的load()、$

2024-05-10 08:05:15

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!