web类似于淘宝购物页面

花了一下午的时间写出来的简易页面,内容很粗糙,但里边包含了我独特的想法。由于是初学者,写的可能不好,希望大家多多提出意见。

这个是主程序

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>淘宝首页</title>
<script type="text/javascript" src="js/jquery-3.3.1.js"></script>
<style>
@import url(‘css/首页.css‘)
</style>
</head>
<body>
<div id="top">
<span>Jane Shopping</span>
<div id="smallbox"><img src="img/theme.gif"/></div>
</div>
<div id="srcBox">
<ul id="srcList">
<li><div class="aBox"><a href="#" class="src_a">首页</a></div></li>
<li><div class="aBox"><a href="#" class="src_a">衬衫</a></div></li>
<li><div class="aBox"><a href="#" class="src_a">卫衣</a></div></li>
<li><div class="aBox"><a href="#" class="src_a">裤子</a></div></li>
<li><div class="aBox"><a href="#" class="src_a">联系我们</a></div></li>
</ul>
</div>
<div id="lt">
最新动态<img src="img/QQ图片20180825110447.png"/>
</div>
<div id="imgs1"><img src="img/1.gif"/></div><br />
<div id="imgs2"><img src="img/2.gif"/></div><br />
<div id="imgs3"><img src="img/3.gif"/></div><br />
<div id="imgs4"><img src="img/4.gif"/></div><br />
<div id="imgs5"><img src="img/5.gif"/></div><br />
<div id="words">
<p>
</p>
</div><br />
<div id="class">
产品分类<img src="img/QQ图片20180825110447.png"/>
</div><br />
<div id="goodsClass">
<ul id="h1">
<li class="cloth">衬衫
<ul class="h2">
<li>短袖衬衫</li>
<li>长袖衬衫</li>
</ul>
</li>
<li class="cloth">卫衣
<ul class="h2">
<li>开襟卫衣</li>
<li>套头卫衣</li>
</ul>
</li>
<li class="cloth">裤子
<ul class="h2">
<li>休闲裤</li>
<li>免烫卡其裤</li>
<li>牛仔裤</li>
<li>短裤</li>
</ul>
</li>
</ul>

</div>
<div id="newGoods">
新款上市<img src="img/left.gif" id="imgLeft"/><img src="img/right.gif" id="imgRight"/>
</div><br />
<div id="newsCloth">
<div class="newImg">
<img src="img/img_1.jpg" /><br />
免烫高支棉衬衣<br />$120.00
</div>
<div class="newImg">
<img src="img/img_2.jpg" /><br />
免烫斜纹衬衣<br />$129.00
</div>
<div class="newImg">
<img src="img/img_3.jpg" /><br />
棉小方格正装衬衣<br />$129.00
</div>
<div class="newImg">
<img src="img/img_4.jpg" /><br />
小米兰格衬衣蓝色<br />$129.00
</div>
</div>
<script>
//向新闻添加鼠标点击事件
$(‘#lt‘).click(function(){
$(‘#words‘).slideToggle()
})
var news=[‘智能机器人问卷调研‘,‘【答问卷】赢精美奖品‘,‘品质家具2件8折,3件7折‘,‘奥妙-向伟大的母亲致净‘,
‘意大利奢侈品牌菲拉格慕入驻京东‘,‘京东PLUS会员权益更新及会费调整‘,‘京东启用全新客服电话“950618”‘,‘乘用车轮胎的公告‘]

var a=0
for(var i=0;i<news.length;i++){
// console.log(str)
$(‘#words>p‘).append("<span>"+news[i]+"</span><br />")
}

// console.log($(‘#lt>p‘).text())
//设置新闻自动滚动事件
function screenScroll(){
$(‘#words‘).scrollTop($(‘#words‘).scrollTop()+110)
for(var i=0;i<news.length;i++){
// console.log(str)
$(‘#words>p‘).append("<span>"+news[i]+"</span><br />")
}
}
var flagSCr=setInterval(‘screenScroll()‘,2000)
//轮播图
// console.log($(‘#imgs1‘).height())
var index=1
function scrollImg(){
if(index>=6){
index=1
for(var i=1;i<6;i++){
$(‘#imgs‘+i).slideUp($(‘#imgs‘+i).slideUp()+154)
}
}
$(‘#imgs‘+index).slideDown($(‘#imgs‘+index).slideDown()+154)

index++
console.log(index)
}
var flagImg=setInterval(‘scrollImg()‘,1000)
$(‘#class‘).click(function(){
$(‘#goodsClass‘).slideToggle()
})
//衣服分类点击事件
$(‘.cloth‘).click(function(){
$(this).children().eq(0).slideToggle()
})
</script>
</body>
</html>

由于刚开始写,对格式什么的不太适应,所以把js程序也写在了主程序里。。。

下边这个是css程序

body{
margin: 0px;
padding: 0px;
}
#top{
width: 100%;
height: 100px;
background-color: #ABD342;
position: relative;
}
#smallbox{
position: absolute;
top: 10px;
right: 20px;
/*width: 100px;
height: 30px;*/
}
#top>span{
color: white;
font-size: 35px;
font-weight: bold;
position: absolute;
top: 20px;
}
#srcList{
list-style: none;
}
.src_a{
text-decoration: none;
}
#srcBox{
/*margin: 0px;
padding: 0px;*/
width: 100%;
height: 50px;
background-color: #ABD342;
padding: 0px;

}
#srcList>li{
float: left;
margin-top: 5px;
padding: 0px;
/*position: absolute;
left: 10px;*/
}
.aBox{
margin-right: 20px;
margin-top: 10px;
background-color: white;
height: 20px;
}
#lt{
width: 260px;
height: 25px;
background-color: #ABD342;
color: white;
text-height: 25px;
margin-top: 10px;
margin-bottom: 0px;
float: left;
}
#lt>img{
padding-left: 160px;
}
#words{
width: 260px;
height: 100px;
border: 1px #CFCFCF solid;
background-color: white;
margin-top: 0px;
overflow-y: hidden;
position: absolute;
left: 0px;
top: 203px;
}
.content{
text-decoration: none;
}
/*#imgs>img{
width: 1090px;
height: 160px;
}*/
/*#imgBox{
height: 154px;
overflow: auto;
display: none;
}*/
#imgs1,#imgs2,#imgs3,#imgs4,#imgs5{
display: none;
position: absolute;
top: 170px;
left: 270px;
}
#class{
width: 260px;
height: 25px;
background-color: #ABD342;
color: white;
text-height: 25px;
margin-top: 10px;
margin-bottom: 0px;
float: left;
}
#class>img{
padding-left: 160px;
float: left;
}
#goodsClass{
width: 260px;
height: 300px;
border: 1px #CFCFCF solid;
}
#h1{
list-style-image: url(../img/treeview-expanded.gif);
}
#h2{
list-style: none;
/*list-style-image: url(../img/treeview-item.gif)*/
}
#newGoods{
height: 25px;
width: 1050px;
border: 1px #CFCFCF solid;
float: left;
position: absolute;
top: 320px;
right: 30px;
background-color: #ABD342;
}
#imgLeft{
padding-left: 940px;
padding-top: 7px;
}
#newsCloth{
height: 300px;
width: 1050px;
border: 1px #CFCFCF solid;
position: absolute;
top: 350px;
right: 30px;
}
.newImg{
float: left;
margin-top: 50px;
margin-left: 40px;
text-align: center;
}

原文地址:https://www.cnblogs.com/ushio/p/9535211.html

时间: 2024-10-12 09:44:11

web类似于淘宝购物页面的相关文章

一款仿淘宝购物的商品列表页面多条件查询(含有单选和全部)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ

ASP.NET之AdRotator实现淘宝浏览页面的商品随机推荐

现在随便上个网都可以看到淘宝.京东等各大电商平台的双十一购物狂欢宣传,从2009年开始淘宝愣是把11.11这一天打造成了全民购物狂欢节.阿里巴巴的上市更是激发了阿里人的斗志,据说他们今年的目标是1000亿.都说一个成功男人的背后必有一个女人,马云的成功是背后成千上万的女人呀-- 言归正传我们谈点专业的知识.我们每个人都在淘宝上买过东西吧,一般我们都是先搜索自己想要买的东西,比如:上衣.牛仔裤.帽子--然后淘宝给出我们搜索结果.如果有更加明确的购物目标我们会勾选按照人气.销量.信用.价格等筛选,然

淘宝购物车页面 -- PC端和移动端实战

最近花了半个月的时间,做了一个淘宝购物车页面的demo.当然,为了能够更加深入的学习,不仅仅有PC端的固定宽度的布局,还实现了移动端在media query为768px以下(也就是实现了ipad,iphone 6 plus,iphone6,S5等)的flexbox弹性布局. 还要再说的是,pc端和移动端淘宝购物车页面的bug基本修复完毕,完全适合一个对html,css,css3 ,html5和js有基础,并且熟悉jquery,scss,熟悉json数据交换格式,jquery ajax的人进行学习

淘宝购物车页面 智能搜索框Ajax异步加载数据

如果有朋友对本篇文章的一些知识点不了解的话,可以先阅读此篇文章.在这篇文章中,我大概介绍了一下构建淘宝购物车页面需要的基础知识. 这篇文章主要探讨的是智能搜索框Ajax异步加载数据.jQuery的社区非常的活跃,许多朋友都在不同地方分享了很多优秀的插件.我在相关的网站上找过想实现类似功能的插件,但是没有找到.于是乎,自己动手丰衣足食.自己来搭建智能搜索框下拉列表.当然,如果有类似功能并且常维护Bug的插件,望留言交流. 源码地址: 淘宝购物车页面--PC端和移动端项目实战 首先需要先给大家打一根

2014双十一淘宝购物省钱攻略

对于网购达人来说,淘宝双11狂欢节是淘宝购物的最佳时机,现在就可以瞄准目标,等到当天就直接下手了,“早起的鸟儿有虫吃”,最明智的做法是在双十一之前提前打折品牌并收藏,对喜欢的商品多进行品质和价格的比较,可以避免冲动消费哦.今天我为大家介绍下2014年淘宝双十一攻略,一起来看看吧! 熟话说的好“磨刀不误砍柴工”,那么我们在开始前需要升级一下自己的武器. 准备工作: 下载并安装 360浏览器 或者 百度浏览器 下载 2014双11爆款折扣内部清单.xlsx (下载地址:http://pan.baid

模拟淘宝购物,运用cookie,记录登录账号信息,并且记住购物车内所选的商品

1.登录界面 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&

Web——在淘宝搜索到看到商品

[摘自]http://blog.renren.com/blog/254459622/799372165 浏览器首先查询DNS服务器,将www.taobao.com转换成ip地址.负载均衡的第一步,将你的访问分配到不同的入口,尽可能保证你所访问的入口是所有入口中可能较快的一个. 通过这个入口成功的访问了www.taobao.com的实际的入口ip地址.产生了一个PV,即Page View,页面访问. 一次访问时生成页面给你看的任务便会被分配给其中一台服务器完成.其中最关键的便是LVS,Linux

淘宝静态页面

1 <!DOCTYPE html> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <title></title> 6 <link href="css/

淘宝购物支付更安全

网上购物已经成为一种必然的趋势,相比实体店的购物,有些人更喜欢待在家里购物,用手机可以随时随地的购物,网上眼花缭乱的东西,让我们目不暇接,当然有好处也有弊端,长时间的观看导致眼睛的疲劳,最重要的在电脑端登录淘宝,在支付环节,容易泄漏个人隐私和个人财产安全,但手机端会大大减小这样的危害,各种各样的手机密码提高了使用安全.又想安全购物又要缓解视力有没有两全其美的方法呢? 最近我发现一软免费的软件可以实现这样的功能.小萝贝控机大师可以把手机连接到电脑端,手机的屏幕投射到电脑上. 连接成功后,可以在电脑