1.案例分析:
结构:一个map大盒子包着三个city地点盒子,三个地点盒子分别有三个pluse光波盒子
样式:map给相对定位,city给绝对定位(父绝子相),pluse也给绝地定位(子绝父绝)
核心:给每一个光波设置居中和动画效果,第二个光波盒子和第三个光波盒子一定要设置延迟
.city>div[class^=pulse] {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 8px;
height: 8px;
border-radius: 50%;
box-shadow: 0 0 10px red;
animation: bowen 3s linear infinite;
}
.pulse2 {
animation-delay: 1s !important;
}
.pulse3 {
animation-delay: 2s !important;
}
2.运行结果:
3.代码:
<!DOCTYPE html>
<html