css实现水面绽放莲花动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现水面绽放莲花动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background: linear-gradient(#26c6da 25%, #b3e5fc 50%, #00bcd4 50%, #006064);
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
}
.ripple {
position: absolute;
align-self: center;
justify-self: center;
border-bottom: 5px solid white;
border-radius: 50%;
animation: rp 10s 4s ease-out infinite;
}
.r2 {
animation-delay: 9s;
}
.lotus {
position: relative;
align-self: center;
justify-self: center;
width: 300px;
height: 300px;
-webkit-box-reflect: belo.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0