动画效果展示

在这里插入图片描述

  • 简写属性里面不包含animation-play-state
  • 暂停动画:animation-play-state: puased;经常和鼠标经过等其他配合使用
  • 想要动画走回来,而不是直接跳回来:animation-direction: alterlate
  • 盒子动画结束后,停在结束位置:animation-fill-mode: forwards

地图点亮城市类波纹

.city div[class="pulse"]{
/*保证小波纹在父盒子里面水平垂直居中,放大后就会中心向四周发散*/
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 8px;
height: 8px;
box-shadow: 0 0 12px #009dfd;
border-radius: 50%;
/*波纹匀速一致*/
/*infiniter无限循环*/
animation: pulse 1.2s linea infiniter;
}


@keyframes pulse {
0% {}
70% {
    width: 40px;
    height: 40px;
    opacity: 1;
    }
100% {
width: 70px;
height: 70px;
opacity: 0;
     }
}

在这里插入图片描述
让文字强制一行内显示

white-space: nowrap;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值