Vue实现点击后文字变色切换

自古美人都是妖i 提交于 2019-12-06 05:20:01

Vue实现点击后文字变色切换

这里用文字举例,图片切换的原理也是一样的

大概思路是:用两个class相同的span分别是切换前后的文字,class相同主要是为了变换前后的文字位置相同。然后用click事件控制它们的显隐。代码如下:

HTML:

<span class="response" v-show="!showCommentInput" @click="showCommentInput = !showCommentInput">回复</span>
<span class="response" v-show="showCommentInput"  @click="showCommentInput = !showCommentInput">回复</span>

JS:

data(){
    return {
        showCommentInput = false,
    }
}

CSS

    .response {
          font-size:14px;
          color: #3e3e3e;
          &:hover{
            font-weight: bold;
          }
          &+.response {
            font-weight: bold;
          }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!