在上述代码中 添加vue代码,点击按钮可以控制展品详情页面的显示与隐藏
时间: 2024-02-21 13:01:04 浏览: 132
Vue.js 点击按钮显示/隐藏内容的实例代码
好的,以下是一个包含 Vue.js 的 HTML 页面,其中添加了一个按钮,点击该按钮可以控制展品详情页面的显示与隐藏:
```html
<!DOCTYPE html>
<html>
<head>
<title>展品详情</title>
<style>
.exhibit {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
.exhibit img {
width: 300px;
height: 200px;
object-fit: cover;
margin-bottom: 20px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.exhibit h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
text-align: center;
}
.exhibit p {
font-size: 16px;
line-height: 1.5;
text-align: justify;
margin: 0 20px;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<button v-on:click="showExhibit = !showExhibit">展品详情</button>
<div v-if="showExhibit" class="exhibit">
<img src="exhibit.jpg" alt="展品图片">
<h2>展品名称</h2>
<p>
展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍展品详细介绍。
</p>
</div>
</div>
<script>
var app = new Vue({
el: '#app',
data: {
showExhibit: false
}
})
</script>
</body>
</html>
```
你可以将上述代码复制到一个 HTML 文件中,然后将 `exhibit.jpg` 替换为展品的实际图片,修改 `展品名称` 和 `展品详细介绍` 的内容,即可创建一个包含 Vue.js 的展品详情页面,并实现了点击按钮可以控制展品详情页面的显示与隐藏的功能。
阅读全文