原创投稿 行业报告 AI展会 数据标注
投稿发布
首页 > IT技术 > 前端

Vue 导航 点击当前标题变色

1.效果

2.所有代码

登录后复制 
<template>
    <div class="now-time">
      <div class="timebox">
      <a href="#" v-for="(item,index) in nowTime" v-on:click="addClass(index)"
         v-bind:class="{ bgColors:index==current}">
        <p>{{item.time}}</p>
        <p>{{item.start}}</p>
      </a>
      </div>
    </div>


</template>

<script>
    export default {
        name: "Nowtime",
      methods: {
        addClass:function(index){
          this.current=index;
        }
      },
      mounted() {

      },
      data(){
        return{
          current:0,
          nowTime:[
            {
              time:"9:00",
              start:"已开抢"
            },
            {
              time:"10:00",
              start:"已开抢"
            },
            {
              time:"11:00",
              start:"已开抢"
            },
            {
              time:"12:00",
              start:"已开抢"
            },
            {
              time:"13:00",
              start:"未开抢"
            },
            {
              time:"14:00",
              start:"未开抢"
            },
            {
              time:"15:00",
              start:"未开抢"
            },
          ],
        }
      }
    }
</script>

<style scoped>
.now-time{
  width: 100%;
  height: .8rem;
  background: #282832;
  display: flex;
  overflow-x:scroll;
}
.timebox{
  width: 100%;
  height: .8rem;
  display: flex;
  background: #282832;
}
  .now-time a{
    display: flex;
    flex-direction: column;
    width: 1.35rem;
    height: .79rem;
    align-items: center;
    flex-shrink: 0;
  }
.now-time a p:first-child{
  font-size: .23rem;
  color: white;
  font-weight: bold;
}
.now-time a p:last-child{
  font-size: .16rem;
  color: white;
}
.timebox .bgColors{
  background: #ff5700;
}
</style>
 
标签:Vue

声明:本站部分作品是由网友自主投稿和发布、编辑整理上传,对此类作品本站仅提供交流平台,转载的目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,不为其版权负责。如果您发现网站上有侵犯您的知识产权的作品,请与我们取得联系,我们会及时修改或删除。

相关文章:

    无相关信息

网友评论:

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
SEM推广服务
热门文章
SEM推广服务

Copyright©2005-2026 sykv.cn 可思数据 版权所有    京ICP备14056871号

关于我们   免责声明   广告合作   版权声明   联系我们   原创投稿   网站地图  

可思数据 数据标注行业联盟

扫码入群
咨询反馈
扫码关注

微信公众号

返回顶部