需求背景
當(dāng)文本超過兩行顯示...,并且顯示展開扬蕊,收起
效果圖
實現(xiàn)思路
舉例簡單版:循環(huán)遍歷獲取所有內(nèi)容盒子的高度谊囚,由于行高設(shè)置的是22px,所以兩行就是44px执赡,是否顯示展開/收起镰踏,只需判斷小盒子高度是否超過44px;css和js配合實現(xiàn)
html
<view class="problem">
<view class="title">常見問題</view>
<view class="problem-list">
<view class="item" v-for="(item, index) in questionList" :key="item.id">
<view class="item-ask">
<text class="text1">問</text>
<text class="text2">{{ item.title }}</text>
</view>
<view id="item-answer" class="item-answer" :class="{ 'visible-text': domHeightArr[index]?.showAll }"
>{{ item.content }}
</view>
<view class="item-more" v-if="domHeightArr[index]?.height >= 44">
<view class="more-box" @tap="handlerShowAll(index)">
<text>{{ domHeightArr[index]?.showAll ? "展開" : "收起" }}</text>
<image
class="answer-expand-icon"
:src="domHeightArr[index]?.showAll ? expandIcon : retractIcon"
/>
</view>
</view>
</view>
</view>
</view>
css
重點看 item-answer(內(nèi)容基礎(chǔ)樣式)和 visible-text (超出顯示...)分開動態(tài)顯示
.item-answer {
font-size: 28px;
font-weight: 400;
color: #7b7b7b;
line-height: 44px;
margin: 12px 0 8px;
}
.visible-text {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
js
/** 答案dom元素的高度 */
domHeightArr: DomHeightArr[] = [];
/** 展開圖標(biāo) */
expandIcon: string = "xxxxxx";
/** 收起圖標(biāo) */
retractIcon: string = "xxxxxxx";
/**
* 此方法在拿到數(shù)據(jù)后調(diào)用即可
*/
check() {
// 判斷摘要是否溢出
Taro.nextTick(() => {
const _this = this;
const query = Taro.createSelectorQuery();
query
.selectAll(".item-answer")
.boundingClientRect(function (rects: any) {
rects.forEach((rect) => {
_this.domHeightArr.push({
showAll: rect.height >= 44 ? true : false,
height: rect.height,
});
});
})
.exec();
});
}
/**
* 切換展開/收起
* @param index 當(dāng)前點擊項的下標(biāo)
*/
handlerShowAll(index) {
this.domHeightArr[index].showAll = !this.domHeightArr[index].showAll;
}
知識擴(kuò)展部分
微信小程序獲取實例的幾種api
api詳情查看
wx.createSelectorQuery() 返回一個SelectorQuery實例
SelectorQuery :
1.select() 返回一個NodesRef 實例
2.selectAll() 返回所有匹配選擇器的NodesRef 實例
3.selectViewport() 選擇顯示區(qū)域沙合〉煳保可用于獲取顯示區(qū)域的尺寸、滾動位置等信息首懈。
4.exec() 執(zhí)行所有的請求绊率。請求結(jié)果按請求次序構(gòu)成數(shù)組,在callback的第一個參數(shù)中返回究履。