web三次作业

这段HTML代码创建了一个类似淘宝的商品展示模块,包括商品图片、下拉选项(找同款、找相似)、价格、描述、店铺信息以及图标。商品图片具有悬停显示下拉菜单的效果。代码中使用了CSS进行样式设计,实现了响应式布局。

仿淘宝

<!DOCTYPE html>
<html lang="zh">
	<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>Document</title>
		<style>
			.good {
				border: 1px solid red;
				width: 220px;
				height: 360px;
			}

			.pic {
				width: 220px;
				height: 220px;
				position: relative;
			}

			.pic>img {
				width: 220px;
				height: 220px;
			}

			.find>div {
				width: 110px;
				background-color: #f40;
				color: white;
				text-align: center;
				float: left;
			}

			.find>div:first-child {
				width: 109px;
				border-right: 1px solid white;
			}

			.find {
				position: absolute;
				bottom: 0px;
				display: none;
			}

			.good:hover .find {
				display: block;
			}

			.find a {
				color: white;
				text-decoration: none;
			}

			.price,
			.des,
			.shopinfo,
			.icon {
				margin-top: 5px;
				margin-right: 5px;
				margin-left: 5px;
			}

			.price>span {
				line-height: 20px;
				vertical-align: middle;
			}

			.price>span:first-child {
				color: #f40;
				font-size: 20px;
				font-weight: bold;
			}

			.price>span:nth-child(2) {
				background-color: #f40;
				color: white;
				font-size: 14px;
			}

			.price>span:last-child {
				color: #777;
				font-size: 14px;
				float: right;
			}

			.des>a {
				color: #333;
				font-size: 14px;
				text-decoration: none;
			}

			.des>a:hover {
				color: #f40;
				text-decoration: underline;
			}

			.shopinfo>a:first-child,
			.shopinfo>span {
				color: #333;
				font-size: 14px;
			}

			.shopinfo>span {
				float: right;
			}

			.icon>span:first-child {
				background-image: url("https://img.alicdn.com/imgextra/i1/O1CN01QuhUWL1xJKJw0hnvG_!!6000000006422-2-tps-62-32.png");
				width: 31px;
				height: 16px;
				background-size: cover;
				display: inline-block;
			}

			.icon>span:nth-child(2) {
				display: inline-block;
				width: 49px;
				height: 16px;
				border: 1px solid rebeccapurple;
				background-size: 308px 298px;
				background-position: -5px -113px;
				background-image: url("https://img.alicdn.com/tps/i3/TB1h9GMMpXXXXcSXVXXRJo3QFXX-616-596.png");
			}

			.icon>span:last-child {
				display: inline-block;
				float:right;
				background-size: 430px 426px;
				background-position: -172px -323px;
				width: 16px;
				height: 16px;
				background-image: url("https://img.alicdn.com/tps/i1/TB1D4e7MpXXXXbpXpXX8jvl4XXX-860-852.png");
			}
			.good{
				float:left;
				margin-left:10px;
				margin-top:10px;
			}
		</style>
	</head>
	<body>
		<div class="container">

			<div class="good">
				<div class="pic">
					<img src="C:\Users\gchoud\Pictures\web\1.png" alt="">
					<div class="find">
						<div><a href="#">找同款</a></div>
						<div><a href="#">找相似</a></div>
					</div>
				</div>
				<div class="price">
					<span>¥219.00</span>
					<span>包邮</span>
					<span>3万+人已购买</span>
				</div>
				<div class="des">
					<a href="#">我家哥哥同款卫衣穿衣上以后唱跳rap篮球都有加成</a>
				</div>
				<div class="shopinfo">
					<a href="#">北冥有鲲旗舰店</a>
					<span>四川 成都</span>
				</div>
				<div class="icon">
					<span></span>
					<span></span>
					<span></span>
				</div>
			</div>
		</div>
	</body>
</html>

### Web前端三次作业要求与示例教程 #### 一、项目概述 本次作业旨在让学生深入理解并掌握Web前端开发的核心技能,包括但不限于HTML5、CSS3和JavaScript的应用。学生需创建一个具有特定主题的动态网页,此过程不仅考察学生的编码能力,还测试其创意表达和技术实现水平。 #### 二、具体要求 ##### 1. 主题选定 选择一个感兴趣的主题作为网站的内容核心,比如四川旅游网页设计制作[^1]。这可以激发创作者的热情,并使作品更加个性化。 ##### 2. 技术栈应用 - **HTML5**: 构建页面结构的基础语法; - **CSS3**: 实现视觉风格的设计工具,允许适当使用现代特性如Flexbox布局[^2]; - **JavaScript**: 添加交互功能的关键编程语言; 注意遵循相关标准指南,在非HTML5环境下谨慎选用某些高级CSS属性[^3]。 ##### 3. 功能模块规划 确保站点至少包含以下几个部分: - 首页:提供导航链接至其他子页面; - 关于我们/作者简介:简要介绍自己或团队背景信息; - 特色展示区:突出所选主题的独特之处; - 用户反馈表单:收集访问者的建议意见; ##### 4. 设计原则遵守 重视用户体验(UX),保持界面简洁明了的同时也要注重美观度。合理安排色彩搭配方案,字体大小适中易读性强。对于移动设备友好型响应式布局也是加分项之一。 ```html <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>我的第三次Web前端作业</title> <!-- 引入外部资源 --> <link rel="stylesheet" href="./styles.css"/> </head> <body> <header> <h1>欢迎来到我的特色主页</h1> <nav> <ul> <li><a href="#home">首页</a></li> <li><a href="#about">关于我们</a></li> <li><a href="#features">特色展示</a></li> <li><a href="#contact">联系我们</a></li> </ul> </nav> </header> <main id="content"> <section id="home"></section> <section id="about"></section> <section id="features"></section> <form action="#" method="post" id="contact"> ... </form> </main> <footer> © 2024 All rights reserved. </footer> <script src="./scripts.js"></script> </body> </html> ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值