div+css实现深海可爱卡通鲸鱼游动动画效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css实现深海可爱卡通鲸鱼游动动画效果代码
代码标签: div css 深海 可爱 卡通 鲸鱼 游动 动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
display: flex;
width: 100vw;
height: 100vh;
overflow: hidden;
justify-content: center;
align-items: center;
background: radial-gradient(circle at center, #f9efe4 50%, #ecc9a5);
min-height: 400px;
min-width: 400px;
}
body h1 {
position: absolute;
bottom: 20px;
font-size: 10px;
}
body details {
position: absolute;
width: 325px;
height: 200px;
z-index: 9;
top: calc(50% - 100px);
left: calc(50% - 162.5px);
opacity: 1;
color: transparent;
font-size: 85px;
outline: none;
}
body details:focus {
outline: none;
}
body details summary {
outline: none;
}
body details summary:before, body details summary:after {
opacity: 0;
content: "";
position: absolute;
width: 10px;
height: 10px;
backgr.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0