css布局实现套餐卡片选择效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现套餐卡片选择效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>推荐套餐</title>
<style>
* {
margin: 0;
padding: 0;
border: 0;
list-style: none;
text-decoration: none;
color: inherit;
font-weight: 400;
font-family: "微软雅黑";
box-sizing: border-box;
font-style: normal;
outline: 0;
-webkit-tap-highlight-color: transparent
}
body {
width: 100%;
overflow-x: hidden
}
img {
vertical-align: middle;
max-width: 100%
}
.clearfix:after,.clearfix:before {
display: table;
line-height: 0;
content: "";
clear: both;
}
.w1200 {
margin: 0 auto;
width: 1200px;
}
/* 背景标题 */
.recommend-package {
background: #f9f9f9;
padding-bottom: 100px;
height: auto;
overflow: hidden
}
.recommend-package .title {
position: relative;
text-align: center;
height: 172px;
line-height: 182px;
font-size: 32px
}
/* 列表 */
.recommend-item {
position: relative;
float: left;
background: #fff;
transition: transform .3s ease;
margin-left: -1px;
height: 445px;
width: 300px
}
.recommend-item .title {
height: 80px;
line-height: 80px;
background: #e4e4e4;
font-size: 22px;
color: #333;
text-align: center
}
.recommend-item .box {
padding: 20px 26px 0 26px
}
.recommend-item .desc {
height: 75px;
line-height: 1.8em;
font-size: 14px;
color: #666
}
.recommend-item .config {
padding-top: 12px;
font-size: 28px;
height: auto;
overflow: hidden;
}
.recommend-item .config-unit {
font-size: 16px
}
.recommend-item .config-item {
float: left;
text-align: center;
color: #333;
width: 33.3%;
height: 80px;
background: #f7f7f7;
margin-top: 20px
}
.recommend-item .config-sub {
font-size: 14px;
color: #999
}
.recommend-item .price-row {
margin-top: 37px;
text-align: center;
font-size: 14px
}
.recommend-item .price {
color: #f60;
font-size: 28px
}
.recommend-item .buy-button {
text-align: center;
margin-top: 20px
}
.recommend-item .buy-button a {
display: inline-block;
width: 177px;
height: 39px;
line-height: 38px;
border: 1px solid #f60;
background: #fff;
text-align: center;
color: #f60
}
.recommend-item .buy-button a:hover {
background: #f60;
color: #fff
}
.recommend-item .inner {
background: #fff;
width: 300px;
height: 445px;
border: 1px solid #d3d3d3
}
.recommend-item.active {
z-index: 10
}
.recommend-item.active .inner {
position: absolute;
border-color: #0af;
width: 310px;
height: 486px;
top: -20px;
box-shadow: 0 5px 13px rgba(0,0,0,.1)
}
.recommend-item.active .title {
background: #0af;
color: #fff;
height: 100px;
line-height: 103px
}
.recommend-item.active .config {
color: #0af
}
</style>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery-3.2.1.min.js"></script>
</head>
<body>
<div class="recommend-package">
<div class="w1200">
<p class="title">
推荐套餐
</p>
<div class="clearfix">
<div class="recommend-item active">
<div class="inner">
<div class="title">
入门型
</div>
<div class="box">
<div class="desc">
适用于个人网站初始阶段并发访问量小,经济配置省钱适用,两步购买方便快捷
</div>
<div class=" clearfix">
<div class="con.........完整代码请登录后点击上方下载按钮下载查看
网友评论0