css实现细胞核裂变复制动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现细胞核裂变复制动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
height: 100vh;
margin: 0;
}
.content {
width: 100vw;
text-align: center;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
background: radial-gradient(rgb(59 10 225), #000000);
}
.cellule {
border-radius: 70% 50% 65% 50%;
box-shadow: 0 20px 30px rgb(0 0 0 / 20%), inset 0px 10px 30px 5px #2e47f8;
height: 40vmin;
position: absolute;
width: 40vmin;
display: flex;
justify-content: center;
align-items: center;
}
.cellule:after {
border-radius: 70% 50% 65% 50%;
background: radial-gradient(
ellipse at center,
rgba(255, 255, 255, 0.5) 0%,
rgba(255, 255, 255, 0) 70%
);
box-shadow: inset 0 20px 30px rgb(255 255 255 / 15%);
content: "";
height: 100%;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0