鼠标划过左右两个标题使其显示内容不一样

<template>
  <div class="warpper">
    <div class="header">
      <div class="left font color" data-index="0" @mouseover="change"  ref="index0">left</div>
      <div class="right font" data-index="1" @mouseover="change"  ref="index1">right</div>
    </div>
    <div class="body">
      <ul>
        <li><a :href="data1"><img :src="data2" alt=""><span>{{data3}}</span></a></li>
        <li><a :href="data1"><img :src="data2" alt=""><span>{{data3}}</span></a></li>
        <li><a :href="data1"><img :src="data2" alt=""><span>{{data3}}</span></a></li>
        <li><a :href="data1"><img :src="data2" alt=""><span>{{data3}}</span></a></li>
        <li><a :href="data1"><img :src="data2" alt=""><span>{{data3}}</span></a></li>
        <li><a :href="data1"><img :src="data2" alt=""><span>{{data3}}</span></a></li>
      </ul>
    </div>
  </div>
</template>

<script>
export default {
  name: "test",
  data(){
    return{
      data1:'www.baidu.com',
      data2:'http://photocdn.sohu.com/20151127/mp44855242_1448611696691_3.jpeg',
      data3:'左侧',
    }
  },
  methods:{
    tz(){
      this.$router.push({
        path: '/anliku',
      })
    },
    /*切换*/
    change(e){
      /*判断是左是右*/
      if (e.target.dataset.index == '0') {
        this.$refs.index0.classList.add("color");
        this.$refs.index1.classList.remove("color");
        /*这里掉左侧接口获取数据*/
        this.data1='https://www.baidu.com'
        this.data2='http://photocdn.sohu.com/20151127/mp44855242_1448611696691_3.jpeg'
        this.data3='左侧'
      }else{
        this.$refs.index1.classList.add("color");
        this.$refs.index0.classList.remove("color");

        /*这里掉右侧接口获取数据*/
        this.data1='https://www.toutiao.com'
        this.data2='http://www.mms591.com/www.mms591.com-photo/2013041914/1-130419144U1.jpg'
        this.data3='右侧'
      }

    }
  }
}
</script>

<style scoped>
*{
  margin: 0;
  padding: 0;
}
.warpper{
  width: 550px;
  height: 450px;
  border: 1px solid #000;
  margin-left: 20px;
  margin-top: 20px;
  background-color: #fff;
}
.header{
  height: 15%;
  border-bottom: 1px solid black;
  display: flex;
  box-sizing: border-box;
}
.font:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.font{
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  width: 50%;
  cursor: pointer;
}
.color{
  background-color: #e0e0e0;
  color: white;
}

/*.font:hover{
  background-color: #e0e0e0;
  color: white;
}*/
.left{
  border-right: 1px solid black;
}

.body{
  height: 85%;
}
ul {
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}
li {
  list-style: none;
  width: calc((100% - 20px) / 3);
  height: calc((100% - 10px) / 2);
  border: 1px solid #000;
  box-sizing: border-box;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: center;
}
li:nth-child(3n){
  margin-right: 0;
}
li:nth-child(n+3){
  margin-bottom: 0;
}
img{
  width: 100%;
  height: 90%;
}
a{
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

小白d

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

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

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

打赏作者

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

抵扣说明:

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

余额充值