写一个宠物店的前端代码
时间: 2024-05-03 20:19:34 浏览: 144
以下是一个简单的宠物店前端代码,使用了HTML和CSS语言:
```HTML
<!DOCTYPE html>
<html>
<head>
<title>宠物店</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
font-size: 24px;
}
nav {
background-color: #444;
color: #fff;
padding: 10px;
text-align: center;
font-size: 18px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
nav li {
margin: 0 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 5px;
border-radius: 5px;
}
nav a:hover {
background-color: #fff;
color: #444;
}
section {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 20px;
min-height: 600px;
}
.card {
background-color: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
margin: 10px;
padding: 20px;
border-radius: 10px;
width: 300px;
height: 400px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.card img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 10px;
}
.card h2 {
font-size: 20px;
margin: 0;
text-align: center;
}
.card p {
font-size: 16px;
text-align: justify;
margin: 10px 0;
}
.card button {
background-color: #444;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease-in-out;
}
.card button:hover {
background-color: #fff;
color: #444;
transform: scale(1.1);
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
font-size: 14px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
</style>
</head>
<body>
<header>
<h1>宠物店</h1>
</header>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">猫咪</a></li>
<li><a href="#">狗狗</a></li>
<li><a href="#">小宠</a></li>
<li><a href="#">鱼类</a></li>
<li><a href="#">鸟类</a></li>
<li><a href="#">关于我们</a></li>
</ul>
</nav>
<section>
<div class="card">
<img src="https://via.placeholder.com/200x200" alt="宠物照片">
<h2>猫咪1</h2>
<p>这是一只可爱的猫咪,非常温顺,喜欢和人玩耍。</p>
<button>了解更多</button>
</div>
<div class="card">
<img src="https://via.placeholder.com/200x200" alt="宠物照片">
<h2>狗狗1</h2>
<p>这是一只调皮的小狗,非常聪明,喜欢学习新技能。</p>
<button>了解更多</button>
</div>
<div class="card">
<img src="https://via.placeholder.com/200x200" alt="宠物照片">
<h2>小宠1</h2>
<p>这是一只可爱的小宠物,非常活泼,喜欢跑来跑去。</p>
<button>了解更多</button>
</div>
<div class="card">
<img src="https://via.placeholder.com/200x200" alt="宠物照片">
<h2>鱼类1</h2>
<p>这是一种美丽的水族,非常适合养在家里。</p>
<button>了解更多</button>
</div>
<div class="card">
<img src="https://via.placeholder.com/200x200" alt="宠物照片">
<h2>鸟类1</h2>
<p>这是一种可爱的鸟类,非常喜欢唧唧喳喳地叫。</p>
<button>了解更多</button>
</div>
</section>
<footer>
<p>版权所有 © 2021 宠物店</p>
</footer>
</body>
</html>
```
以上代码实现了一个简单的宠物店网页,包括了一个页面头部、导航栏、宠物卡片和底部版权信息。您可以根据自己的需求进行修改和扩展。
阅读全文