div+css实现操作成功文字提示页卡片折叠展开效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css实现操作成功文字提示页卡片折叠展开效果代码
代码标签: div css 操作成功 文字 提示 页 卡片 折叠 展开
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");body {
display: grid;
place-items: center;
height: 100vh;
background-size: 24px 24px;
background-image: linear-gradient(to right,#e7e9e7 1px,transparent 1px),linear-gradient(to bottom,#e7e9e7 1px,transparent 1px);
background-color: #eff1ef;
font-family: "Inter";
color: #1d211c;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
body::before {
content: "";
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-size: 96px 96px;
background-image: linear-gradient(to right,#dfe2df 1px,transparent 1px),linear-gradient(to bottom,#dfe2df 1px,transparent 1px)
}
#texture {
bottom: 0;
height: 100%;
left: 0;
opacity: .08;
pointer-events: none;
position: fixed;
width: 100%;
z-index: 100;
filter: contrast(200%)
}
.........完整代码请登录后点击上方下载按钮下载查看
网友评论0