anime实现方形格子波浪动画效果代码
代码语言:html
所属分类:动画
代码描述:anime实现方形格子波浪动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
html,
body {
background-color: black;
color: #252423;
}
body {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
height: 100vh;
}
@keyframes colors {
0%{background:rgb(255,182,193);
}
10%{background:rgb(250,0,0);
}
20%{background:rgb(250,250,0);
}
30%{background:rgb(250,250,250);
}
40%{background:rgb(0,250,250);
}
50%{background:rgb(0,0,250);
}
60%{background:rgb(0,250,0);
}
70%{background: rgb(23,23,250);}
80%{background: rgb(255,105,180);}
89%{background: rgb(255,218,185); }
90%{background: rgb(255,218,185);
box-shadow:1px 1px 2px 2px purple;}
100%{background: rgb(57,255,20);
}
}
.animation-wrapper {
wid.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0