移动端电商首页制作-京东

news/2024/11/23 7:40:33/

文章目录

  • 前言
  • 一、技术选型
  • 二、搭建相关文件夹结构
  • 三、设置视口标签以及引入初始化样式
  • 四、常用初始化样式
  • 五、二倍精灵图做法
  • 六、图片格式
    • 1.DGP图片压缩技术
    • 2.webp图片格式
  • 七、代码展示
    • 1.html部分
    • 2.css部分
    • 3.效果图


前言

案例:京东移动端首页


一、技术选型

方案:采取单独制作移动端页面方案
技术:布局采取流式布局

二、搭建相关文件夹结构

在这里插入图片描述

三、设置视口标签以及引入初始化样式

  <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0"><link rel="stylesheet" href="css/normalize.css"><link rel="stylesheet" href="css/index.css">

四、常用初始化样式

body {width: 100%;margin: 0 auto;min-width: 320px;max-width: 640px;background-color: #fff;font-size: 14px;font-family: -apple-system, Helvetica, sans-serif;line-height: 1.5;color: #666;
}

五、二倍精灵图做法

  • 在firework里面把精灵图等比例缩放为原来的一半
  • 之后根据大小测量坐标
  • 注意代码里面background-size也要写:精灵图原来宽度的一半

六、图片格式

1.DGP图片压缩技术

京东自主研发推出DGP图片压缩技术,经测试该技术,可直接节省;用户近50%的浏览量,极大的提升了用户的网页打开速度。能够兼容JPEG,实现全平台、全部浏览器的兼容支持,经过内部和外部上万张图片的人眼浏览测试后发现,压缩后的图片和webp的清晰度对比没有差距。

2.webp图片格式

谷歌开发的一种旨在加快图片加载速度的图片格式。图片压缩体积大约只有JPEG的2/3,并能节省大量的服务器宽带资源和数据空间。

七、代码展示

1.html部分

<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,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0"><!-- 引入我们的css初始化文件 --><link rel="stylesheet" href="css/normalize.css"><!-- 引入我们首页的css --><link rel="stylesheet" href="css/index.css"><title>Document</title>
</head><body><!-- 顶部 --><header class="app"><ul><li><img src="images/close.png" alt=""></li><li><img src="images/logo.png" alt=""></li><li>打开京东App,购物更轻松</li><li>立即打开</li></ul></header><!-- 搜索 --><div class="search-wrap"><div class="search-bth"></div><div class="search"><div class="jd-icon"></div><div class="sou"></div></div><div class="serach-login">登录</div></div><!-- 主体内容部分 --><div class="main-content"><!-- 滑动图 --><div class="slider"><img src="upload/banner.dpg" alt=""></div><!-- 品牌日 --><div class="brand"><div><a href="#"> <img src="upload/pic11.dpg" alt=""></a></div><div><a href="#"><img src="upload/pic22.dpg" alt=""></a></div><div><a href="#"><img src="upload/pic33.dpg" alt=""></a></div></div><!-- nav部分 --><nav><a href="#"><img src="upload/nav1.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav2.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav3.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav1.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav2.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav3.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav1.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav2.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav3.webp" alt=""><span>京东超市</span></a><a href="#"><img src="upload/nav1.webp" alt=""><span>京东超市</span></a></nav><!-- 新闻模块 --><div class="news"><a href="#"><img src="upload/new1.dpg" alt=""></a><a href="#"><img src="upload/new2.dpg" alt=""></a><a href="#"><img src="upload/new3.dpg" alt=""></a></div></div>
</body>

2.css部分

body {width: 100%;min-width: 320px;max-width: 640px;margin: 0 auto;font-family: -apple-system, Helvetica, sans-serif;font-size: 14px;color: #666;line-height: 1.5;/* background-color: #ccc;height: 2000px; */
}/* 点击高亮我们需要清除清除 设置为transparent完成透明 */* {-webkit-tap-highlight-color: transparent;
}/* 在移动端浏览器默认的外观在iOS上加上这个属性才能给按钮和输入框自定义样式 */* {-webkit-appearance: none;
}/* 禁用长按页面时的弹出菜单 */img,
a {-webkit-touch-callout: none;
}a {color: #666;text-decoration: none;
}ul {margin: 0;padding: 0;list-style: none;
}img {/* 去除图片空白缝隙 */vertical-align: middle;
}div {box-sizing: border-box;
}.clearfix:after {content: '';display: block;
}.app {height: 45px;
}.app ul li {float: left;height: 45px;line-height: 45px;background-color: #333333;text-align: center;color: #fff;
}.app ul li:nth-child(1) {width: 8%;
}.app ul li:nth-child(1) img {width: 10px;
}.app ul li:nth-child(2) {width: 10%;
}.app ul li:nth-child(2) img {width: 30px;vertical-align: middle;
}.app ul li:nth-child(3) {width: 57%;
}.app ul li:nth-child(4) {width: 25%;background-color: #F63515;
}/* 搜索 */.search-wrap {position: fixed;/* position: relative; */overflow: hidden;width: 100%;height: 44px;min-width: 320px;max-width: 640px;
}.search-bth {position: absolute;top: 0;left: 0;/* background-color: pink; */width: 40px;height: 44px;
}.search-bth::before {content: '';display: block;width: 20px;height: 18px;background: url(../images/s-btn.png) no-repeat;background-size: 20px 18px;margin: 14px 0 0 15px;
}.serach-login {position: absolute;right: 0;top: 0;width: 40px;height: 44px;color: #fff;line-height: 44px;/* background-color: skyblue; */
}.search {position: relative;height: 30px;/* background-color: red; */background-color: #fff;margin: 0 50px;border-radius: 15px;margin-top: 7px;
}.jd-icon {position: absolute;width: 20px;height: 15px;top: 8px;left: 13px;/* background-color: pink; */background: url(../images/jd.png) no-repeat;background-size: 20px 15px;
}.jd-icon::after {content: '';position: absolute;right: -8px;top: 0;display: block;width: 1px;height: 15px;background-color: #ccc;
}.sou {position: absolute;top: 8px;left: 50px;width: 18px;height: 15px;background-color: pink;background: url(../images/jd-sprites.png) no-repeat -82px 0;background-size: 200px auto;
}.slider img {width: 100%;
}/* 品牌日 */.brand {overflow: hidden;border-radius: 10px 10px 0 0;
}.brand div {float: left;width: 33.33%;
}.brand div img {width: 100%;
}/* nav */nav {padding-top: 5px;
}nav a {float: left;width: 20%;text-align: center;
}nav a img {width: 40px;margin: 10px 0;
}nav a span {display: block;
}/* news */.news {margin-top: 20px;
}.news img {width: 100%;
}.news a {float: left;box-sizing: border-box;
}.news a:nth-child(1) {width: 50%;
}/* .news a:nth-child(2),
.news a:nth-child(3) {width: 25%;
} *//* n+2就是从2个往后面选 */.news a:nth-child(n+2) {width: 25%;border-left: 1px solid #ccc;
}

3.效果图

在这里插入图片描述
在这里插入图片描述


http://www.ppmy.cn/news/785342.html

相关文章

模仿京东登录页面

由于自己初学HTML&#xff0c;想模仿一个页面来练手&#xff0c;所以就模仿了京东的登录页面&#xff0c;功能没有完全实现&#xff0c;只是大体的布局实现了。 截图如下&#xff1a; 代码如下&#xff1a; <% page language"java" import"java.util.*"…

cps配置之京东联盟篇

1、注册京东联盟 京东联盟官网&#xff1a;去注册 2、获取京东联盟ID 京东联盟首页&#xff1a;右上角–账户管理。 保存京东联盟ID。

京东移动端URL自动跳转PC端URL插件

前言 平常情况下&#xff0c;同学朋友通过手机给自己分享的京东或者淘宝的某一个商品的购物页面&#xff0c;自己在使用电脑打开的时候不会自动跳转到PC版页面&#xff0c;还是会继续显示手机端页面&#xff0c;非常不利于自己的浏览和使用。 因此&#xff0c;我想自己整一个…

京东联盟api获取数据

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 一、SDK调用 1.把SDK引入项目中2.加入依赖3.代码二、Httpclien调用 1.加入依赖2.写一个HttpclienUtil方法3.传参 一、SDK调用 1.把SDK加入项目中 有java,PHP等的版…

京东联盟高级API - 京东联盟转链接口 京东客转链接口 京粉转链接口 京东联盟返利接口 京东返利接口

接口支持商品链接&#xff0c;活动链接&#xff0c;店铺链接转链&#xff0c;获取普通推广链接和优惠券二合一推广链接&#xff0c;转链后下单佣金归自己所有&#xff0c;结算后可以在京东联盟提现。 1、注册共京荣开放平台账号 注册地址: http://interface.mkstone.club/#/ …

移动端案例-京东首页

效果图&#xff1a; 1. 准备工作 方案&#xff1a; 单独制作移动页面方案 2. 搭建相关文件夹结构 3 .设置视口标签以及引入初始化样式 4.html代码如下&#xff1a; <body><!-- 主心 --><div class"xin"><!-- 导航部分 --><div class…

京东联盟高级API - 高并发京东联盟转链接口 京东客转链接口 京粉转链接口 京东联盟接口,线报无广告接口

京东联盟高级API - 高并发京东联盟转链接口 京东客转链接口 京粉转链接口 京东联盟接口 京东接口&#xff0c;线报无广告接口 ##共京荣开放平台 接口支持商品链接&#xff0c;活动链接&#xff0c;店铺链接转链&#xff0c;获取普通推广链接和优惠券二合一推广链接&#xff0…

京东移动端首页

移动端技术选型&#xff1a; 单独制作移动端页面之流式布局 1.准备的文件夹&#xff08;网站&#xff09;&#xff1a; 2.在京东页面收集素材&#xff08;其中index.css是自己写的样式&#xff0c;另外一个css初始化文件可以从http://necolas.github.io/normalize.css//下载…