当前位置:   article > 正文

利用vue实现“显示更多”功能_显示更多 vue

显示更多 vue

利用vue实现“显示更多”功能

当网页内容比较多时,将内容全部显示一方面会显得冗余,另一方面并不是每个人都喜欢看所有内容。因此,为了提高用户体验,一些网站便将内容显示一部分,然后使用“显示更多”功能来对剩余内容进行显示与隐藏。下面是利用vue.js实现上述功能的demo。

demo

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <div id="app">
    <div v-for="(item, key) in items" v-show="key<num">
      {{item}}
    </div>
    <span @click="showMore">{{txt}}</span>
  </div>
  <script src="https://unpkg.com/vue"></script>
  <script>
    var app = new Vue({
      el: '#app',
      data(){
        return{
          items: [
            'a',
            'b',
            'c',
            'd',
            'e',
            'f'
          ],
          isShow: true,
          txt: '显示全部',
          num: 3
        }
      },
      methods: {
        showMore(){
          console.log('1', this.isShow);
          this.isShow = !this.isShow;
          console.log('2', this.isShow);
          this.num = this.isShow? 3: this.items.length;
          this.txt = this.isShow?  '显示全部':'收起'
        }
      }
    })
  </script>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/76791
推荐阅读
相关标签
  

闽ICP备14008679号