在展示大量文本的时候,很多网站会在页面上出现一个展开全文的文字按钮 , 点击这个按钮才会展开全部内容 .
使用jquery比较容易实现 , 最开始我想直接根据vuejs的语法来实现效果 , 结果失败 , 还是jq做起来简单
思路是 , 获取当前文本的div高度 ,超过一定高度就增加一个class值 . 它旁边的点击展开全文默认隐藏 , 超过高度展示 .
展开全文点击后更换文字内容为收起全文
在vuejs中也可以正常使用jquery , 增加一个method
displayAll(){ $(function(){ let obj=$("body").find(".mailMainIntro"); let readMore=$(".readMore"); readMore.hide(); obj.removeClass("mainIntroZhe"); obj.each(function(){ let height=$(this).height(); let text=$(this).text(); console.log(height,text); if(height>67){ $(this).addClass("mainIntroZhe"); $(this).next().show(); } }); readMore.unbind("click").click(function(e){ let text=$(this).text(); if(text=="展开全文"){ $(this).text("收起全文"); $(this).prev().removeClass("mainIntroZhe"); } if(text=="收起全文"){ $(this).text("展开全文"); $(this).prev().addClass("mainIntroZhe"); } return; }); }); }
html部分是这样的
<el-row v-for="(item, index) in weiboList" :key="index" class="mainAccountBox"> <el-card :body-style="{ padding: '10px' }"> <el-col :span="3"> <el-avatar :size="60"> <img :src="item.img" class="image"> </el-avatar> </el-col> <el-col :span="21"> <div class="mainAccountList"> <div class="title">{{item.name}}</div> <div class="mailMainIntro" v-html="item.text" > </div> <div class="readMore">展开全文</div> <div class="turnWeibo" v-if="item.weibo!=null&&item.weibo.length!=0"> <div class="title">@{{item.weibo.name}}</div> <div class="mailMainIntro" v-html="item.weibo.text"></div> <div class="readMore">展开全文</div> </div> <div class="mainTime"> {{item.create_time}} <span v-html="item.source"></span> </div> <div class="bottom"> <el-button type="primary" v-on:click="copySpecialTopicUrl(item.weibo_url)" class="button">复制URL</el-button> <el-button type="primary" v-on:click="copySpecialTopicUrl('http://t.cn/'+item.short_url)" class="button">复制短URL</el-button> <el-button type="success" class="button">推至CMS</el-button> </div> </div> </el-col> <div class="clearfix"></div> </el-card> </el-row>
ajax获取完数据后就执行一下displayAll方法
getWeiboList: function () { let _this = this; let data={}; if(this.weiboSearch != ""){ data.word=this.weiboSearch; } if(this.pickTime != ""){ data.dt=this.pickTime; } $.get('index.php?r=media/getdata',data, function (rs) { let res= JSON.parse(rs); _this.weiboList=res.result.rows; _this.displayAll(); }).then(()=>{ this.getTodayNums(); }); },
十年开发经验程序员,离职全心创业中,历时三年开发出的产品《唯一客服系统》
一款基于Golang+Vue开发的在线客服系统,软件著作权编号:2021SR1462600。一套可私有化部署的网站在线客服系统,编译后的二进制文件可直接使用无需搭开发环境,下载zip解压即可,仅依赖MySQL数据库,是一个开箱即用的全渠道在线客服系统,致力于帮助广大开发者/公司快速部署整合私有化客服功能。
开源地址:
唯一客服(开源学习版)
唯一客服(开源学习版)
官网地址:
唯一客服官网
唯一客服官网
今天的文章[javascript] 实现展开全文和收起全文效果分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/55890.html