步骤 1 : 效果 步骤 2 : 布局 步骤 3 : 纯html 步骤 4 : 加上样式 步骤 5 : 样式讲解 步骤 6 : 再整合在一起
每种商品都有5个详细图片,而且这些图片都比较大。 为了加快显示的速度,讲解的时候,只使用一个图片。
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script>
</head>
<style>
div.productDetailDiv{
width: 790px;
margin: 40px auto;
}
div.productDetailTopPart{
border: 1px solid #DFDFDF;
border-left-width: 0px;
}
a.selected{
border-left: 1px solid #cfbfb1;
border-right: 1px solid #cfbfb1;
color: #b10000;
display: inline-block;
font-weight: bold;
line-height: 46px;
width: 90px;
text-align: center;
position: relative;
}
a.selected:before{
content:"";
display: block;
border-width: 1px;
border-color: #b00000;
border-style: solid;
width: 90px;
height: 0;
position: absolute;
top: -1px;
margin-left: -1px;
}
a.selected:after{
content: "";
display: block;
border-color: #b00000 transparent transparent;
border-style: solid;
border-width: 5px;
width: 0;
height: 0;
position: absolute;
top: -1px;
left: 50%;
margin-left: -5px;
}
a.productDetailTopReviewLink{
padding: 0px 20px;
border-right: 1px dotted #D2D2D2;
color: #333333;
}
span.productDetailTopReviewLinkNumber{
color: #3355B9;
}
div.productParamterPart{
border: 1px solid #DFDFDF;
padding: 40px;
}
div.productParamter{
color: #999999;
font-weight: bold;
margin-bottom: 20px;
}
div.productParamterList span{
display: block;
width: 220px;
float: left;
padding: 8px 0px;
color: #666666;
}
div.productDetailImagesPart img{
display: block;
width: 790px;
margin:20px 0px;
}
body{
font-size: 12px;
font-family: Arial;
}
a:hover{
text-decoration:none;
color: #C40000;
}
</style>
<div class="productDetailDiv" style="display: block;">
<div class="productDetailTopPart">
<a class="productDetailTopPartSelectedLink selected" href="#nowhere">商品详情</a>
<a class="productDetailTopReviewLink" href="#nowhere">累计评价 <span class="productDetailTopReviewLinkNumber">19</span> </a>
</div>
<div class="productParamterPart">
<div class="productParamter">产品参数:</div>
<div class="productParamterList">
<span>材质成分: 聚酯纤维100% </span>
<span>品牌: Emyche/艾米秋 </span>
<span>货号: 129668 </span>
<span>尺码: L M S XL X </span>
<span>上市年份季节: 2016年夏季 </span>
<span>颜色分类: 白色 黑色 浅蓝 </span>
<span>适用年龄: 18-25周岁 </span>
</div>
<div style="clear:both"></div>
</div>
<div class="productDetailImagesPart">
<img src="https://how2j.cn/tmall/img/productDetail/8626.jpg">
</div>
</div>
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。
学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。
学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script>
</head>
<div class="productDetailDiv" style="display: block;">
<div class="productDetailTopPart">
<a class="productDetailTopPartSelectedLink selected" href="#nowhere">商品详情</a>
<a class="productDetailTopReviewLink" href="#nowhere">累计评价 <span class="productDetailTopReviewLinkNumber">19</span> </a>
</div>
<div class="productParamterPart">
<div class="productParamter">产品参数:</div>
<div class="productParamterList">
<span>材质成分: 聚酯纤维100% </span>
<span>品牌: Emyche/艾米秋 </span>
<span>货号: 129668 </span>
<span>尺码: L M S XL X </span>
<span>上市年份季节: 2016年夏季 </span>
<span>颜色分类: 白色 黑色 浅蓝 </span>
<span>适用年龄: 18-25周岁 </span>
</div>
<div style="clear:both"></div>
</div>
<div class="productDetailImagesPart">
<img src="https://how2j.cn/tmall/img/productDetail/8626.jpg">
</div>
</div>
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。
学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script>
</head>
<style>
div.productDetailDiv{
width: 790px;
margin: 40px auto;
}
div.productDetailTopPart{
border: 1px solid #DFDFDF;
border-left-width: 0px;
}
a.selected{
border-left: 1px solid #cfbfb1;
border-right: 1px solid #cfbfb1;
color: #b10000;
display: inline-block;
font-weight: bold;
line-height: 46px;
width: 90px;
text-align: center;
position: relative;
}
a.selected:before{
content:"";
display: block;
border-width: 1px;
border-color: #b00000;
border-style: solid;
width: 90px;
height: 0;
position: absolute;
top: -1px;
margin-left: -1px;
}
a.selected:after{
content: "";
display: block;
border-color: #b00000 transparent transparent;
border-style: solid;
border-width: 5px;
width: 0;
height: 0;
position: absolute;
top: -1px;
left: 50%;
margin-left: -5px;
}
a.productDetailTopReviewLink{
padding: 0px 20px;
border-right: 1px dotted #D2D2D2;
color: #333333;
}
span.productDetailTopReviewLinkNumber{
color: #3355B9;
}
div.productParamterPart{
border: 1px solid #DFDFDF;
padding: 40px;
}
div.productParamter{
color: #999999;
font-weight: bold;
margin-bottom: 20px;
}
div.productParamterList span{
display: block;
width: 220px;
float: left;
padding: 8px 0px;
color: #666666;
}
div.productDetailImagesPart img{
display: block;
width: 790px;
margin:20px 0px;
}
body{
font-size: 12px;
font-family: Arial;
}
a:hover{
text-decoration:none;
color: #C40000;
}
</style>
<div class="productDetailDiv" style="display: block;">
<div class="productDetailTopPart">
<a class="productDetailTopPartSelectedLink selected" href="#nowhere">商品详情</a>
<a class="productDetailTopReviewLink" href="#nowhere">累计评价 <span class="productDetailTopReviewLinkNumber">19</span> </a>
</div>
<div class="productParamterPart">
<div class="productParamter">产品参数:</div>
<div class="productParamterList">
<span>材质成分: 聚酯纤维100% </span>
<span>品牌: Emyche/艾米秋 </span>
<span>货号: 129668 </span>
<span>尺码: L M S XL X </span>
<span>上市年份季节: 2016年夏季 </span>
<span>颜色分类: 白色 黑色 浅蓝 </span>
<span>适用年龄: 18-25周岁 </span>
</div>
<div style="clear:both"></div>
</div>
<div class="productDetailImagesPart">
<img src="https://how2j.cn/tmall/img/productDetail/8626.jpg">
</div>
</div>
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。
学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script>
</head>
<style>
div.productDetailDiv{
width: 790px;
margin: 40px auto;
}
div.productDetailTopPart{
border: 1px solid #DFDFDF;
border-left-width: 0px;
}
a.selected{
border-left: 1px solid #cfbfb1;
border-right: 1px solid #cfbfb1;
color: #b10000;
display: inline-block;
font-weight: bold;
line-height: 46px;
width: 90px;
text-align: center;
position: relative;
}
a.selected:before{
content:"";
display: block;
border-width: 1px;
border-color: #b00000;
border-style: solid;
width: 90px;
height: 0;
position: absolute;
top: -1px;
margin-left: -1px;
}
a.selected:after{
content: "";
display: block;
border-color: #b00000 transparent transparent;
border-style: solid;
border-width: 5px;
width: 0;
height: 0;
position: absolute;
top: -1px;
left: 50%;
margin-left: -5px;
}
a.productDetailTopReviewLink{
padding: 0px 20px;
border-right: 1px dotted #D2D2D2;
color: #333333;
}
span.productDetailTopReviewLinkNumber{
color: #3355B9;
}
div.productParamterPart{
border: 1px solid #DFDFDF;
padding: 40px;
}
div.productParamter{
color: #999999;
font-weight: bold;
margin-bottom: 20px;
}
div.productParamterList span{
display: block;
width: 220px;
float: left;
padding: 8px 0px;
color: #666666;
}
div.productDetailImagesPart img{
display: block;
width: 790px;
margin:20px 0px;
}
body{
font-size: 12px;
font-family: Arial;
}
a:hover{
text-decoration:none;
color: #C40000;
}
</style>
<div class="productDetailDiv" style="display: block;">
<div class="productDetailTopPart">
<a class="productDetailTopPartSelectedLink selected" href="#nowhere">商品详情</a>
<a class="productDetailTopReviewLink" href="#nowhere">累计评价 <span class="productDetailTopReviewLinkNumber">19</span> </a>
</div>
<div class="productParamterPart">
<div class="productParamter">产品参数:</div>
<div class="productParamterList">
<span>材质成分: 聚酯纤维100% </span>
<span>品牌: Emyche/艾米秋 </span>
<span>货号: 129668 </span>
<span>尺码: L M S XL X </span>
<span>上市年份季节: 2016年夏季 </span>
<span>颜色分类: 白色 黑色 浅蓝 </span>
<span>适用年龄: 18-25周岁 </span>
</div>
<div style="clear:both"></div>
</div>
<div class="productDetailImagesPart">
<img src="https://how2j.cn/tmall/img/productDetail/8626.jpg">
</div>
</div>
HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。
问答区域
2019-05-03
站长 这个项目突然报前端的CSS错误 但不影响项目运行这是为什么丫
2019-04-14
不太理解这的:before,:after的用法
2018-06-11
可以把其他几张图片一起贴出来吗?
2018-05-02
这里的选项卡中红色三角形的另一种解决方法
2018-03-28
天猫红色的小桃尖的大小调节不来
提问太多,页面渲染太慢,为了加快渲染速度,本页最多只显示几条提问。还有 6 条以前的提问,请 点击查看
提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
|