vue 点击展开显示更多 点击收起部分隐藏

Posted smdb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 点击展开显示更多 点击收起部分隐藏相关的知识,希望对你有一定的参考价值。

技术分享图片

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Document</title>
 6 </head>
 7 <style type="text/css">
 8 ul{
 9     width: 100%;
10     height: 50px;
11     line-height: 50px;
12     overflow: visible;
13     
14 }
15 .active{
16 overflow: hidden;
17 }
18 li {
19     float: left;
20     width:100px;
21     color: #f1f1f1;
22     font-size: 18px;
23     background-color: green;
24     margin-left: 50px;    
25     padding-left: 20px;
26     margin-top: 10px;
27     list-style: none;
28     
29 }
30 span{
31     display: inline-block;
32     margin-left: 10px;
33     font-size: 18px;
34     color: #ccc;
35     line-height: 30px;
36     
37 }
38 </style>
39 
40 <body>
41     <div id="app">
42           <ul :class="{active:flag}">
43               <li v-for="todo in todos">{{todo.text}}
44                   
45               </li>
46             <p v-if ="todos.length>6" @click = "showTag"><span>{{flag?"展开":"收起"}}</span></p>
47           </ul>
48           
49     </div>
50 </body>
51 <script src="https://cdn.jsdelivr.net/npm/vue"></script>
52 <script type="text/javascript">
53 var app = new Vue({
54   el: ‘#app‘,
55   data: {
56      todos:[{text:‘生产标签‘},{text:‘生产标签‘},{text:‘生产标签‘},{text:‘生产标签‘},{text:‘生产标签‘},{text:‘生产标签‘},{text:‘生产标签‘},{text:‘生产标签‘},{text:‘生产标签‘}],
57      flag:true
58   },
59   methods:{
60       showTag(){
61           this.flag = !this.flag
62       }
63   }
64 })
65 </script>
66 </html>

点击展开之后:主要用到的属性有ovflow属性,以及vue的动态绑定class

技术分享图片

 

以上是关于vue 点击展开显示更多 点击收起部分隐藏的主要内容,如果未能解决你的问题,请参考以下文章

iOS-文本内容展开/收起实现方案

vue实现点击展开,点击收起

vue-element el-table点击行展开,并且收起其他行

ExpandableListView实现展开更多和收起更多

APP前端请求后台时,“展开与收起”交互中渐进使用动画

js实现超出一定字数隐藏并用省略号"..."代替,点击后又可进行展开和收起,