国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 熱點 > 微信 > 正文

微信小程序實現富文本圖片寬度自適應的方法

2024-07-22 01:19:12
字體:
來源:轉載
供稿:網友

引言:在微信小程序里,比如商品展示頁面的商品詳情會有圖片展示,PC端設置的商品詳情是PC端的寬度,所以在小程序里圖片會顯示不全,這時就應該做相應的處理,使小程序里圖片顯示正確

思路

把圖片的寬度改為手機屏幕對應的寬度

微信小程序需要知道的知識

需要知道微信小程序里有自己的寬度標準,單位為rpx; 針對所有不同尺寸的瀏覽器,微信小程序里規定屏幕寬為750rpx;

解決

WXML

<view class='html_detail'>  <rich-text nodes='{{artical}}'></rich-text></view>

WXS

data={artical:''}async onLoad(){  const json = await api.getDetail();  if(json !== null){    this.artical = util.formatRichText(json.detail.description);  }}

若artical里只有圖片,并且圖片沒有設置style和寬度/高度

util.js

function formatRichText(html){  let newContent= html.replace(//<img/gi, '<img style="max-width:100%;height:auto;display:block;"');  return newContent;}module.exports = {  formatRichText}

若artical里包含多種標簽

util.js

/** * 處理富文本里的圖片寬度自適應 * 1.去掉img標簽里的style、width、height屬性 * 2.img標簽添加style屬性:max-width:100%;height:auto * 3.修改所有style里的width屬性為max-width:100% * 4.去掉<br/>標簽 * @param html * @returns {void|string|*} */function formatRichText(html){  let newContent= html.replace(/<img[^>]*>/gi,function(match,capture){    match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, '');    match = match.replace(/width="[^"]+"/gi, '').replace(/width='[^']+'/gi, '');    match = match.replace(/height="[^"]+"/gi, '').replace(/height='[^']+'/gi, '');    return match;  });  newContent = newContent.replace(/style="[^"]+"/gi,function(match,capture){    match = match.replace(/width:[^;]+;/gi, 'max-width:100%;').replace(/width:[^;]+;/gi, 'max-width:100%;');    return match;  });  newContent = newContent.replace(/<br[^>]*//>/gi, '');  newContent = newContent.replace(//<img/gi, '<img style="max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;"');  return newContent;}module.exports = {  formatRichText}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持錯新站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 华容县| 淅川县| 青阳县| 平原县| 图们市| 丰城市| 阜宁县| 遂宁市| 定日县| 商河县| 贡嘎县| 鄂托克旗| 湟中县| 木里| 三江| 丹巴县| 菏泽市| 芜湖市| 吴江市| 凯里市| 佳木斯市| 平顺县| 萍乡市| 宣威市| 宁陕县| 绵阳市| 榆林市| 如东县| 河间市| 深水埗区| 泽库县| 宁陵县| 图木舒克市| 阿拉善盟| 杭州市| 潞西市| 观塘区| 武宣县| 巴青县| 金乡县| 宝丰县|