帮我写美食团购页面设计的html 和css代码,团购页面整体可以分为上下两部分,上部分主要包括:悬浮图标、团购名称、图片展示、切换图标四部分。其中,悬浮图标和图片展示模块使用<img>标记,团购名称使用<h2>标记,切换图标使用列表标记<ul>、<li>搭建结构。下部分主要包括文字说明、价格优惠两部分。其中,文字说明以及价格优惠模块左右两部分均使用<p>标记搭建结构
时间: 2024-01-21 18:19:35 浏览: 151
广东茂名-htmlcss静态页面,共三页
以下是一个简单的美食团购页面设计的 HTML 和 CSS 代码,你可以按照自己的需求进行修改和完善:
HTML 代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>美食团购页面</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="float-icon">
<img src="icon.png" alt="悬浮图标">
</div>
<h2>美食团购名称</h2>
<div class="image-slider">
<ul>
<li><img src="image1.jpg" alt="图片展示"></li>
<li><img src="image2.jpg" alt="图片展示"></li>
<li><img src="image3.jpg" alt="图片展示"></li>
</ul>
<div class="switch-icons">
<span class="active"></span>
<span></span>
<span></span>
</div>
</div>
</header>
<section class="content">
<div class="description">
<p>这里是美食团购的详细说明文字,包括菜品介绍、商家信息等等。</p>
</div>
<div class="price">
<div class="discount">
<p><span>原价:</span>¥100</p>
<p><span>优惠价:</span>¥80</p>
</div>
<div class="buy-button">
<a href="#">立即购买</a>
</div>
</div>
</section>
</body>
</html>
```
CSS 代码:
```css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #f5f5f5;
padding: 20px;
position: relative;
}
.float-icon {
position: absolute;
top: 20px;
right: 20px;
}
.float-icon img {
width: 50px;
height: 50px;
}
h2 {
font-size: 24px;
margin-top: 20px;
margin-bottom: 10px;
}
.image-slider {
position: relative;
margin-top: 20px;
}
.image-slider ul {
list-style: none;
overflow: hidden;
}
.image-slider li {
float: left;
width: 100%;
}
.image-slider img {
width: 100%;
height: auto;
}
.switch-icons {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
}
.switch-icons span {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #ccc;
margin-right: 5px;
cursor: pointer;
}
.switch-icons .active {
background-color: #ff6600;
}
.content {
padding: 20px;
}
.description p {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
}
.price {
display: flex;
align-items: center;
justify-content: space-between;
}
.discount p {
font-size: 18px;
margin-bottom: 10px;
}
.discount p span {
font-weight: bold;
margin-right: 10px;
}
.buy-button a {
display: inline-block;
background-color: #ff6600;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
text-decoration: none;
font-size: 18px;
transition: all 0.3s;
}
.buy-button a:hover {
background-color: #ff5500;
}
```
注意:上面的代码只是一个简单的示例,实际项目中还需要考虑更多的细节和交互效果。
阅读全文