100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > html图片水波浪 css 实现水波纹 波浪动画效果

html图片水波浪 css 实现水波纹 波浪动画效果

时间:2020-01-14 03:46:53

相关推荐

html图片水波浪 css 实现水波纹 波浪动画效果

水波纹效果

css

.wave{

position: relative;

border: 1px solid silver;

width: 100px;

height: 100px;

border-radius: 50%;

line-height: 50px;

margin: 0 auto;

font-size: 14px;

text-align: center;

overflow: hidden;

animation: water-wave linear infinite;

}

.wave1{

position: absolute;

top: 40%;

left: -25%;

background: #33cfff;

opacity: .7;

width: 200%;

height: 200%;

border-radius: 40%;

animation: inherit;

animation-duration: 5s;

}

.wave2{

position: absolute;

top: 40%;

left: -35%;

background: #0eaffe;

opacity: .7;

width: 200%;

height: 200%;

border-radius: 35%;

animation: inherit;

animation-duration: 7s;

}

.wave3{

position: absolute;

top: 50%;

left: -35%;

background: #0f7ea4;

opacity: .3;

width: 200%;

height: 200%;

border-radius: 33%;

animation: inherit;

animation-duration: 11s;

}

@keyframes water-wave{

0% {transform: rotate(0deg);}

100% {transform: rotate(360deg);}

}

效果图

来源:/yhhBKY/p/11934949.html

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。