Vue点击显示不同的图片

使用Vue中的以下知识点来显示效果
①:v-for:循环遍历数据
②:v-bind:class={ }:绑定样式
③:v-on:click(简写@click):点击事件
④:v-if:判断

<!DOCTYPE html>
<html>
<head>
	<title>点击显示相对应的图片</title>
	<style type="text/css">
		*{
			margin: 0;
			padding: 0;
			list-style: none;
		}
		.myul{
			display: flex;
		}
		.myul li{
			border: 1px solid orange;
			height: 150px;
			width: 150px;
			flex-direction: row;
			text-align: center;
			line-height: 150px;
		}
		.content{
			border: 1px solid grey;
			height: 350px;
			width: 600px;
		}
		.content img{
			height: 350px;
			width: 600px;
		}
		.active{
			background: #3A9ffb;
			color: white;
		}
	</style>
</head>
<body>
	<div class="app">
		<div class="title">
			<ul class="myul">
				<li v-for="(item,index) in mess" v-bind:class="{ 'active': status === index}" v-on:click="changeImg(index)">
					{{item.content}}
				</li>
			</ul>
		</div>
		<div class="content">
			<img src="img/1.jpg" v-if="status === 0">
			<img src="img/2.jpg" v-if="status === 1">
			<img src="img/84.jpg" v-if="status === 2">
			<img src="img/85.jpg" v-if="status === 3">
		</div>
	</div>
</body>
</html>
<script src="https://cdn.bootcss.com/vue/2.5.20/vue.js"></script>
<script type="text/javascript">
	new Vue({
		el:".app",
		data:{
			status:0,   //状态显示
			mess:[
				{id:0,content:"点击显示图片一"},
				{id:1,content:"点击显示图片二"},
				{id:2,content:"点击显示图片三"},
				{id:3,content:"点击显示图片四"}
			]
		},
		methods:{
			changeImg:function(index){
				this.status=index;
			}
		}
	})
</script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

潔19

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值