我需要一个用HTML5加css3制作一个关于杭州的土特产品的网页代码使用js进行一些交互效果
时间: 2024-03-14 17:48:33 浏览: 55
好的,下面是一个简单的HTML5 + CSS3代码示例,展示了杭州的土特产品,并使用JavaScript实现了一些交互效果。
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>杭州土特产品</title>
<style>
body {
font-family: Arial, sans-serif;
}
header {
background-color: #FFC107;
padding: 20px;
text-align: center;
color: #fff;
}
h1 {
margin-top: 0;
}
section {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.card {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
margin: 20px;
width: 300px;
height: 400px;
overflow: hidden;
position: relative;
}
.card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.card h2 {
margin: 20px;
font-size: 24px;
color: #333;
}
.card p {
margin: 20px;
font-size: 16px;
color: #666;
height: 120px;
overflow: hidden;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.card:hover img {
transform: scale(1.1);
}
.btn {
background-color: #FFC107;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
position: absolute;
bottom: 20px;
right: 20px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #FF9800;
}
</style>
</head>
<body>
<header>
<h1>杭州土特产品</h1>
</header>
<section>
<div class="card">
<img src="https://picsum.photos/id/40/300/200" alt="土特产品1">
<h2>西湖龙井茶</h2>
<p>西湖龙井茶是中国浙江杭州的一种名茶,以其鲜香爽口、叶底嫩绿、形状整齐而闻名于世。杭州市西湖区的龙井村是其主要生产地。</p>
<button class="btn" onclick="alert('这是西湖龙井茶')">了解更多</button>
</div>
<div class="card">
<img src="https://picsum.photos/id/50/300/200" alt="土特产品2">
<h2>临安蜜桔</h2>
<p>临安蜜桔是中国浙江杭州临安市的一种名产水果,以其鲜美多汁、果形美观、口感独特而著名。临安市的南田镇是其主要生产地。</p>
<button class="btn" onclick="alert('这是临安蜜桔')">了解更多</button>
</div>
<div class="card">
<img src="https://picsum.photos/id/60/300/200" alt="土特产品3">
<h2>桐庐糯米糕</h2>
<p>桐庐糯米糕是中国浙江杭州桐庐县的一种传统糕点,以其软糯香甜、口感独特、外形美观而闻名。桐庐县的桐君阁镇是其主要生产地。</p>
<button class="btn" onclick="alert('这是桐庐糯米糕')">了解更多</button>
</div>
</section>
<script>
const cards = document.querySelectorAll('.card');
cards.forEach(card => {
card.addEventListener('click', () => {
card.classList.toggle('active');
});
});
</script>
</body>
</html>
```
这段代码会生成一个简单的网页,其中包含了三个土特产品卡片,当你点击卡片时,会出现卡片的详细信息。你可以根据自己的需求修改和调整这段代码,以适应你的项目。
阅读全文