css波纹动画和从中间向两边运动动画

这篇博客介绍了如何使用CSS创建动态波纹效果以及让元素从中间向两边平滑运动的技巧,包括HTML结构和CSS样式实现的详细步骤,并展示了最终的视觉效果。
摘要由CSDN通过智能技术生成

1.波纹

(1)html

<div class="kefu" style="display: block;">
    <div class="round"></div>
	<div class="img">
		<div class='img_fff'></div>
	</div>	       
</div>

(2)css

*{
	margin: 0;
	padding: 0;
}
.kefu {
    width: 120px;
    height: 120px;
    position: fixed;
    z-index: 50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.kefu .img {
	width:86px;
	height:86px;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    margin-left: -43px;
    margin-top: -43px;
	background-color:#baedcd;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
}
.kefu .img_fff{
	width:66px;
	height:66px;
	position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    margin-left: -33px;
    margin-top: -33px;
	background-color:#fff;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
}
.round {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #baedcd;
    text-align: center;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation-name: mymove;
    animation-name: mymove;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iter
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值