纯css实现模态弹出层弹出框效果
代码语言:html
所属分类:弹出层
代码描述:纯css实现模态弹出层弹出框效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="http://repo.bfw.wiki/bfwrepo/css/font-awesome-4.7.0/css/font-awesome.min.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-size: 15px;
line-height: 1.7;
color: #1f2029;
background-color: #fff;
overflow: hidden;
background-position: center;
background-repeat: no-repeat;
background-size: 101%;
}
p {
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 1.7;
color: #1f2029;
}
.section {
position: relative;
width: 100%;
display: block;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0