Bootstrap

一、实现搜索书籍页面

代码展示:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>案例1:实现搜索书籍页面</title>
		<!-- 支持手机端 -->
		<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
		<!-- 引入bootstrap的CSS -->
		<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
		<style type="text/css">
			.navbar-collapse {
				flex-grow: 0;
				/* 1代表弹性扩大占用父容器剩余空间 0代表不占用 */
			}

			.ss {
				height: 100px;
				/* 高度 */
				background-color: #DCDCDC;
				/* 背景颜色 */
				margin-top: 20px;
				/* 上间距 */
			}

			.form-group {
				width: 300px;
				/* 宽度 */
				margin-left: auto;
				/* 左间距 自适应 */
				margin-right: auto;
				/* 右间距 自适应 */
				margin-top: 31px;
				/* (100-38)/2 */
			}

			.list-group,.media{
				margin-top: 30px;
				/* 上间距 */
			}
			.media-body p{
				line-height: 15px;/* 行高 */
				letter-spacing: 3px;
			}
			.media-body p button{
				height: 30px;
				line-height: 10px;
			}
		</style>
	</head>
	<body>
		<!-- 导航条组件 -->
		<nav class="navbar navbar-expand-lg navbar-light bg-light">
			<!-- 固定容器 -->
			<div class="container">
				<a class="navbar-brand" href="#">您好,欢迎来到霍格沃兹网上书店</a>
				<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup"
				 aria-expanded="false" aria-label="Toggle navigation">
					<span class="navbar-toggler-icon"></span>
				</button>
				<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
					<div class="navbar-nav">
						<a class="nav-link active" href="#">首页 <span class="sr-only">(current)</span></a>
						<a class="nav-link" href="#">登录</a>
						<a class="nav-link" href="#">注册</a>
						<a class="nav-link" href="#">我的购物车</a>
					</div>
				</div>
			</div>
		</nav>
		<!-- 栅格系统实现首页框架 -->
		<div class="container">
			<!-- 第一行:搜索区域 -->
			<div class="row ss">
				<div class="col">
					<form>
						<div class="form-group">
							<div class="input-group mb-3">
								<input type="text" class="form-control" placeholder="书籍关键字" aria-label="Recipient's username" aria-describedby="button-addon2">
								<div class="input-group-append">
									<button class="btn btn-primary" type="button" id="button-addon2">查询</button>
								</div>
							</div>
						</div>
					</form>
				</div>
			</div>
			<!-- 第二行 -->
			<div class="row">
				<div class="col-3">
					<!-- 左3-书籍分类 -->
					<div class="list-group">
						<a href="#" class="list-group-item list-group-item-action active" aria-current="true">
							书籍分类
						</a>
						<a href="#" class="list-group-item list-group-item-action">科幻</a>
						<a href="#" class="list-group-item list-group-item-action">言情</a>
						<a href="#" class="list-group-item list-group-item-action">金融</a>
						<a href="#" class="list-group-item list-group-item-action">医疗</a>
						<a href="#" class="list-group-item list-group-item-action">都市</a>
						<a href="#" class="list-group-item list-group-item-action">修仙</a>
						<a href="#" class="list-group-item list-group-item-action">技术</a>
						<a href="#" class="list-group-item list-group-item-action">心理</a>
						<a href="#" class="list-group-item list-group-item-action">悬疑</a>
						<a href="#" class="list-group-item list-group-item-action">动漫</a>
					</div>
				</div>

				<div class="col-9">
					<!-- 右9-轮播图&新书上架&热门书籍 -->
					<div class="media">
						<img src="img/1.png" class="mr-3" alt="...">
						<div class="media-body">
							<h5 class="mt-0"><b>颜忠鸡</b></h5>
							<p>书籍价格:19.9元</p>
							<p>书籍作者:张强屌丝</p>
							<p>书籍出版社:T280出版社</p>
							<p>书籍简介:夏日炎炎,油腻超甜~</p>
							<p>
								<button type="button" class="btn btn-danger">加入购物车</button>
								<button type="button" class="btn btn-danger">立即购买</button>
							</p>
						</div>
					</div>
					<hr >
					
					<div class="media">
						<img src="img/3.png" class="mr-3" alt="...">
						<div class="media-body">
							<h5 class="mt-0"><b>论黄仲是如何在自习睡觉的</b></h5>
							<p>书籍价格:99.9元</p>
							<p>书籍作者:莫叼毛</p>
							<p>书籍出版社:T280出版社</p>
							<p>书籍简介:你,是我的神~</p>
							<p>
								<button type="button" class="btn btn-danger">加入购物车</button>
								<button type="button" class="btn btn-danger">立即购买</button>
							</p>
						</div>
					</div>
					<hr >
					
					<div class="media">
						<img src="img/2.png" class="mr-3" alt="...">
						<div class="media-body">
							<h5 class="mt-0"><b>妇女主任</b></h5>
							<p>书籍价格:0.9元</p>
							<p>书籍作者:周思敏大屌丝</p>
							<p>书籍出版社:T280出版社</p>
							<p>书籍简介:这瓜保熟吗~</p>
							<p>
								<button type="button" class="btn btn-danger">加入购物车</button>
								<button type="button" class="btn btn-danger">立即购买</button>
							</p>
						</div>
					</div>
					<hr >
					
				</div>

			</div>

		</div>
		<!-- 分别引入jQuery的js和Bootstrap的js -->
		<script src="js/jquery-3.3.1.js" type="text/javascript" charset="utf-8"></script>
		<script src="js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
	</body>
</html>

二、首页书籍分类实现

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>案例2:首页书籍分类实现</title>
		<!-- 支持手机端 -->
		<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
		<!-- 引入bootstrap的CSS -->
		<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
		<style type="text/css">
			.navbar-collapse {
				flex-grow: 0;
				/* 1代表弹性扩大占用父容器剩余空间 0代表不占用 */
			}

			.ss {
				height: 100px;
				/* 高度 */
				background-color: #DCDCDC;
				/* 背景颜色 */
				margin-top: 20px;
				/* 上间距 */
			}

			.form-group {
				width: 300px;
				/* 宽度 */
				margin-left: auto;
				/* 左间距 自适应 */
				margin-right: auto;
				/* 右间距 自适应 */
				margin-top: 31px;
				/* (100-38)/2 */
			}
			.list-group,table{
				margin-top: 30px;/* 上间距 */
			}
			/* 悬停表格 表头 字体为白色 */
			.table-hover thead{
				color: white;
			}
			/* 悬停表格 每一行 文本框中 字体居中 */
			.table-hover tr,.table-hover tr td input,.xxx{
				text-align: center;
			}
			.xxx button{
				height: 30px;
				line-height: 10px;
			}
		</style>
	</head>
	<body>
		<!-- 导航条组件 -->
		<nav class="navbar navbar-expand-lg navbar-light bg-light">
			<!-- 固定容器 -->
			<div class="container">
				<a class="navbar-brand" href="#">您好,欢迎来到霍格沃兹网上书店</a>
				<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup"
				 aria-expanded="false" aria-label="Toggle navigation">
					<span class="navbar-toggler-icon"></span>
				</button>
				<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
					<div class="navbar-nav">
						<a class="nav-link active" href="#">首页 <span class="sr-only">(current)</span></a>
						<a class="nav-link" href="#">登录</a>
						<a class="nav-link" href="#">注册</a>
						<a class="nav-link" href="#">我的购物车</a>
					</div>
				</div>
			</div>
		</nav>
		<!-- 栅格系统实现首页框架 -->
		<div class="container">
			<!-- 第一行:搜索区域 -->
			<div class="row ss">
				<div class="col">
					<form>
						<div class="form-group">
							<div class="input-group mb-3">
								<input type="text" class="form-control" placeholder="书籍关键字" aria-label="Recipient's username" aria-describedby="button-addon2">
								<div class="input-group-append">
									<button class="btn btn-primary" type="button" id="button-addon2">查询</button>
								</div>
							</div>
						</div>
					</form>
				</div>
			</div>
			<!-- 第二行 -->
			<div class="row">
				<div class="col-3">
					<!-- 左3-书籍分类 -->
					<div class="list-group">
						<a href="#" class="list-group-item list-group-item-action active" aria-current="true">
							书籍分类
						</a>
						<a href="#" class="list-group-item list-group-item-action">科幻</a>
						<a href="#" class="list-group-item list-group-item-action">言情</a>
						<a href="#" class="list-group-item list-group-item-action">金融</a>
						<a href="#" class="list-group-item list-group-item-action">医疗</a>
						<a href="#" class="list-group-item list-group-item-action">都市</a>
						<a href="#" class="list-group-item list-group-item-action">修仙</a>
						<a href="#" class="list-group-item list-group-item-action">技术</a>
						<a href="#" class="list-group-item list-group-item-action">心理</a>
						<a href="#" class="list-group-item list-group-item-action">悬疑</a>
						<a href="#" class="list-group-item list-group-item-action">动漫</a>
					</div>
				</div>

				<div class="col-9">
					<!-- 右9-轮播图&新书上架&热门书籍 -->
					<table class="table table-hover">
						<thead class="bg-primary">
							<tr>
								<th scope="col">书籍名称</th>
								<th scope="col">单价</th>
								<th scope="col">购买数量</th>
								<th scope="col">小计</th>
								<th scope="col">操作</th>
							</tr>
						</thead>
						<tbody>
							<tr>
								<th scope="row">颜忠鸡</th>
								<td>19.9</td>
								<td><input value="2" /></td>
								<td>39.8元</td>
								<td><a href="#">删除</a></td>
							</tr>
							<tr>
								<th scope="row">妇女主任</th>
								<td>0.9</td>
								<td><input value="10" /></td>
								<td>9元</td>
								<td><a href="#">删除</a></td>
							</tr>
							<tr>
								<th scope="row">论黄仲是如何在自习睡觉的</th>
								<td>99.9</td>
								<td><input value="1" /></td>
								<td>99.9元</td>
								<td><a href="#">删除</a></td>
							</tr>
						</tbody>
					</table>
					<p class="xxx">
						<button type="button" class="btn btn-danger">清空购物车</button>
						<button type="button" class="btn btn-success">继续购物</button>
						<button type="button" class="btn btn-primary">点我结算</button>
					</p>

				</div>

			</div>

		</div>
		<!-- 分别引入jQuery的js和Bootstrap的js -->
		<script src="js/jquery-3.3.1.js" type="text/javascript" charset="utf-8"></script>
		<script src="js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
	</body>
</html>

三、实现购物车页面订单信息

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>案例3:实现购物车页面订单信息</title>
		<!-- 支持手机端 -->
		<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
		<!-- 引入bootstrap的CSS -->
		<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
		<style type="text/css">
			.navbar-collapse {
				flex-grow: 0;
				/* 1代表弹性扩大占用父容器剩余空间 0代表不占用 */
			}

			.ss {
				height: 100px;
				/* 高度 */
				background-color: #DCDCDC;
				/* 背景颜色 */
				margin-top: 20px;
				/* 上间距 */
			}

			.form-group {
				width: 300px;
				/* 宽度 */
				margin-left: auto;
				/* 左间距 自适应 */
				margin-right: auto;
				/* 右间距 自适应 */
				margin-top: 31px;
				/* (100-38)/2 */
			}

			.list-group,
			table {
				margin-top: 30px;
				/* 上间距 */
			}

			/* 悬停表格 表头 字体为白色 */
			.table-hover thead {
				color: white;
			}

			/* 悬停表格 每一行 文本框中 字体居中 */
			.table-hover tr,
			.table-hover tr td input,
			.xxx {
				text-align: center;
			}

			.xxx button {
				height: 30px;
				line-height: 10px;
			}
		</style>
	</head>
	<body>
		
		
		<!-- Modal的HTML代码 -->
		<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
			<div class="modal-dialog modal-dialog-centered"">
				<div class="modal-content">
					<div class="modal-header">
						<h5 class="modal-title" id="exampleModalLabel">订单信息</h5>
						<button type="button" class="close" data-dismiss="modal" aria-label="Close">
							<span aria-hidden="true">&times;</span>
						</button>
					</div>
					<div class="modal-body">
						1、.........
						2、.........
					</div>
					<div class="modal-footer">
						<button type="button" class="btn btn-primary">确定</button>
						<button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
					</div>
				</div>
			</div>
		</div>

		<!-- 导航条组件 -->
		<nav class="navbar navbar-expand-lg navbar-light bg-light">
			<!-- 固定容器 -->
			<div class="container">
				<a class="navbar-brand" href="#">您好,欢迎来到霍格沃兹网上书店</a>
				<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup"
				 aria-expanded="false" aria-label="Toggle navigation">
					<span class="navbar-toggler-icon"></span>
				</button>
				<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
					<div class="navbar-nav">
						<a class="nav-link active" href="#">首页 <span class="sr-only">(current)</span></a>
						<a class="nav-link" href="#">登录</a>
						<a class="nav-link" href="#">注册</a>
						<a class="nav-link" href="#">我的购物车</a>
					</div>
				</div>
			</div>
		</nav>
		<!-- 栅格系统实现首页框架 -->
		<div class="container">
			<!-- 第一行:搜索区域 -->
			<div class="row ss">
				<div class="col">
					<form>
						<div class="form-group">
							<div class="input-group mb-3">
								<input type="text" class="form-control" placeholder="书籍关键字" aria-label="Recipient's username" aria-describedby="button-addon2">
								<div class="input-group-append">
									<button class="btn btn-primary" type="button" id="button-addon2">查询</button>
								</div>
							</div>
						</div>
					</form>
				</div>
			</div>
			<!-- 第二行 -->
			<div class="row">
				<div class="col-3">
					<!-- 左3-书籍分类 -->
					<div class="list-group">
						<a href="#" class="list-group-item list-group-item-action active" aria-current="true">
							书籍分类
						</a>
						<a href="#" class="list-group-item list-group-item-action">科幻</a>
						<a href="#" class="list-group-item list-group-item-action">言情</a>
						<a href="#" class="list-group-item list-group-item-action">金融</a>
						<a href="#" class="list-group-item list-group-item-action">医疗</a>
						<a href="#" class="list-group-item list-group-item-action">都市</a>
						<a href="#" class="list-group-item list-group-item-action">修仙</a>
						<a href="#" class="list-group-item list-group-item-action">技术</a>
						<a href="#" class="list-group-item list-group-item-action">心理</a>
						<a href="#" class="list-group-item list-group-item-action">悬疑</a>
						<a href="#" class="list-group-item list-group-item-action">动漫</a>
					</div>
				</div>

				<div class="col-9">
					<!-- 右9-轮播图&新书上架&热门书籍 -->
					<table class="table table-hover">
						<thead class="bg-primary">
							<tr>
								<th scope="col">书籍名称</th>
								<th scope="col">单价</th>
								<th scope="col">购买数量</th>
								<th scope="col">小计</th>
								<th scope="col">操作</th>
							</tr>
						</thead>
						<tbody>
							<tr>
								<th scope="row">颜忠鸡</th>
								<td>19.9</td>
								<td><input value="2" /></td>
								<td>39.8元</td>
								<td><a href="#">删除</a></td>
							</tr>
							<tr>
								<th scope="row">妇女主任</th>
								<td>0.9</td>
								<td><input value="10" /></td>
								<td>9元</td>
								<td><a href="#">删除</a></td>
							</tr>
							<tr>
								<th scope="row">论黄仲是如何在自习睡觉的</th>
								<td>99.9</td>
								<td><input value="1" /></td>
								<td>99.9元</td>
								<td><a href="#">删除</a></td>
							</tr>
						</tbody>
					</table>
					<p class="xxx">
						<button type="button" class="btn btn-danger">清空购物车</button>
						<button type="button" class="btn btn-success">继续购物</button>
						<button type="button" class="btn btn-primary"  data-toggle="modal" data-target="#exampleModal">点我结算</button>
					</p>

				</div>

			</div>

		</div>
		<!-- 分别引入jQuery的js和Bootstrap的js -->
		<script src="js/jquery-3.3.1.js" type="text/javascript" charset="utf-8"></script>
		<script src="js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
	</body>
</html>

四、图标组件的使用

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>案例4:图标组件的使用</title>
		<!-- 支持手机端 -->
		<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
		<!-- 引入bootstrap的CSS -->
		<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
		<!-- 引入Bootstrap的图标样式 -->
		<link rel="stylesheet" type="text/css" href="font/bootstrap-icons.css"/>
		<style type="text/css">
			.navbar-collapse {
				flex-grow: 0;
				/* 1代表弹性扩大占用父容器剩余空间 0代表不占用 */
			}

			.ss {
				height: 100px;
				/* 高度 */
				background-color: #DCDCDC;
				/* 背景颜色 */
				margin-top: 20px;
				/* 上间距 */
			}

			.form-group {
				width: 300px;
				/* 宽度 */
				margin-left: auto;
				/* 左间距 自适应 */
				margin-right: auto;
				/* 右间距 自适应 */
				margin-top: 31px;
				/* (100-38)/2 */
			}

			/* 画像 */
			.figure {
				text-align: center;/* 水平居中 */
				margin-top: 20px;/* 上间距 */
			}
			/* 列表组 轮播图*/
			.list-group,#carouselExampleIndicators{
				margin-top: 30px;/* 上间距 */
			}
			/* 指示灯样式 */
			.carousel-indicators li{
				background-color: blue;
			}
			/* 新书上架=热门书籍样式 */
			.xxx{
				background-image: url(img/title_bj.png);/* 背景图片 */
				background-repeat: no-repeat;/* 不平铺 */
				color: white;/* 字体颜色 */
				font-size: 18px;/* 字体大小 */
				margin-top: 20px;/* 上间距 */
				padding-left: 18px;/* 左内间距 */
			}
		</style>
	</head>
	<body>
		<!-- 导航条组件 -->
		<nav class="navbar navbar-expand-lg navbar-light bg-light">
			<!-- 固定容器 -->
			<div class="container">
				<a class="navbar-brand" href="#">您好,欢迎来到霍格沃兹网上书店</a>
				<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup"
				 aria-expanded="false" aria-label="Toggle navigation">
					<span class="navbar-toggler-icon"></span>
				</button>
				<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
					<div class="navbar-nav">
						<a class="nav-link active" href="#">首页 <span class="sr-only">(current)</span></a>
						<a class="nav-link" href="#">登录</a>
						<a class="nav-link" href="#">注册</a>
						<a class="nav-link" href="#">我的购物车</a>
					</div>
				</div>
			</div>
		</nav>
		<!-- 栅格系统实现首页框架 -->
		<div class="container">
			<!-- 第一行:搜索区域 -->
			<div class="row ss">
				<div class="col">
					<form>
						<div class="form-group">
							<div class="input-group mb-3">
								<input type="text" class="form-control" placeholder="书籍关键字" aria-label="Recipient's username" aria-describedby="button-addon2">
								<div class="input-group-append">
									<button class="btn btn-primary" type="button" id="button-addon2"><i class="bi bi-search"></i></button>
								</div>
							</div>
						</div>
					</form>
				</div>
			</div>
			<!-- 第二行 -->
			<div class="row">
				<div class="col-3" style="background-color: pink;">
					<!-- 左3-书籍分类 -->
					<div class="list-group">
						<a href="#" class="list-group-item list-group-item-action active" aria-current="true">
							书籍分类
						</a>
						<a href="#" class="list-group-item list-group-item-action">科幻</a>
						<a href="#" class="list-group-item list-group-item-action">言情</a>
						<a href="#" class="list-group-item list-group-item-action">金融</a>
						<a href="#" class="list-group-item list-group-item-action">医疗</a>
						<a href="#" class="list-group-item list-group-item-action">都市</a>
						<a href="#" class="list-group-item list-group-item-action">修仙</a>
						<a href="#" class="list-group-item list-group-item-action">技术</a>
						<a href="#" class="list-group-item list-group-item-action">心理</a>
						<a href="#" class="list-group-item list-group-item-action">悬疑</a>
						<a href="#" class="list-group-item list-group-item-action">动漫</a>
					</div>
				</div>

				<div class="col-9">
					<!-- 右9-轮播图&新书上架&热门书籍 -->

					<div class="row">
						<div class="col">
							<!-- 右9中第一行轮播图 -->
							<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
								<!-- 指示灯部分 -->
								<ol class="carousel-indicators">
									<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
									<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
									<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
									<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
								</ol>
								<div class="carousel-inner">
									<div class="carousel-item active">
										<img src="img/lb1.png" class="d-block w-100" alt="...">
									</div>
									<div class="carousel-item">
										<img src="img/lb2.jpg" class="d-block w-100" alt="...">
									</div>
									<div class="carousel-item">
										<img src="img/lb3.jpg" class="d-block w-100" alt="...">
									</div>
									<div class="carousel-item">
										<img src="img/lb4.jpeg" class="d-block w-100" alt="...">
									</div>
								</div>
								<!-- 左右箭头 -->
								<button class="carousel-control-prev" type="button" data-target="#carouselExampleIndicators" data-slide="prev">
									<span class="carousel-control-prev-icon" aria-hidden="true"></span>
									<span class="sr-only">Previous</span>
								</button>
								<button class="carousel-control-next" type="button" data-target="#carouselExampleIndicators" data-slide="next">
									<span class="carousel-control-next-icon" aria-hidden="true"></span>
									<span class="sr-only">Next</span>
								</button>
							</div>
						</div>
					</div>
					
					<div class="xxx">
						新书上架
					</div>
					
					<div class="row">
						<!-- 右9中第二行新书上架 -->
						<div class="col">
							<figure class="figure">
								<img src="img/1.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>冷间谍</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/3.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>冷间谍</b>&nbsp;<i class="bi bi-cart3" style="color: greenyellow;font-size: 50px;"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/1.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>冷间谍</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/4.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>冷间谍</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/1.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>冷间谍</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
					</div>
					
					<div class="xxx">
						热门书籍
					</div>

					<div class="row">
						<!-- 右9中第二行新书上架 -->
						<div class="col">
							<figure class="figure">
								<img src="img/5.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>第一商会</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/2.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>第一商会</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/7.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>第一商会</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/2.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>第一商会</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
						<div class="col">
							<figure class="figure">
								<img src="img/9.png" class="figure-img img-fluid rounded" alt="...">
								<figcaption class="figure-caption"><b>第一商会</b>&nbsp;<i class="bi bi-cart3 text-danger"></i></figcaption>
							</figure>
						</div>
					</div>

				</div>

			</div>

		</div>
		<!-- 分别引入jQuery的js和Bootstrap的js -->
		<script src="js/jquery-3.3.1.js" type="text/javascript" charset="utf-8"></script>
		<script src="js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
	</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值