我需要一个关于杭州土特产品用html5加js代码
时间: 2024-03-13 16:43:29 浏览: 59
好的,首先你需要了解什么是土特产品。土特产品是指产地、营销地和消费地三者不在同一区域内的特色产品,通常包括农产品、手工艺品等。 杭州市作为一个历史悠久的文化名城,拥有着丰富的土特产品资源,如龙井茶、丝绸、花灯等。
接下来,你可以使用html5和js代码来展示杭州土特产品的信息和图片。以下是一个简单的示例:
```
<!DOCTYPE html>
<html>
<head>
<title>杭州土特产品展示</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.product {
display: inline-block;
margin: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 5px #ccc;
text-align: center;
font-size: 16px;
width: 200px;
height: 250px;
overflow: hidden;
position: relative;
}
.product img {
max-width: 100%;
height: auto;
}
.product h3 {
margin-top: 10px;
font-size: 20px;
font-weight: bold;
}
.product p {
margin-top: 10px;
font-size: 16px;
line-height: 1.5;
height: 80px;
overflow: hidden;
}
.product a {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
background-color: #f00;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-size: 16px;
transition: all 0.3s ease-in-out;
}
.product a:hover {
background-color: #fff;
color: #f00;
border: 1px solid #f00;
box-shadow: 0 0 5px #f00;
}
</style>
</head>
<body>
<div class="product">
<img src="龙井茶.jpg" alt="龙井茶">
<h3>龙井茶</h3>
<p>产自杭州西湖龙井山,色绿香高,独具特色。</p>
<a href="#">了解更多</a>
</div>
<div class="product">
<img src="丝绸.jpg" alt="丝绸">
<h3>丝绸</h3>
<p>杭州丝绸历史悠久,丝绸制品工艺精湛。</p>
<a href="#">了解更多</a>
</div>
<div class="product">
<img src="花灯.jpg" alt="花灯">
<h3>花灯</h3>
<p>杭州传统手工艺品,形态各异、色彩绚丽。</p>
<a href="#">了解更多</a>
</div>
</body>
</html>
```
这段代码使用了html5中的div、img、h3、p和a等标签来展示土特产品的信息和图片,并使用了css样式来美化展示效果。你可以根据需要修改图片和文字内容,以展示更多杭州的土特产品。
阅读全文