織夢dedecms默認(rèn)的文章內(nèi)容里面的圖片是固定大小的,這樣在手機端里面就可能會導(dǎo)致圖片不能完整顯示,甚至把屏幕撐開,這樣非常不友好,所以這里就給大家分享一個方法,讓手機端的文章內(nèi)容里面的圖片能夠自適應(yīng)圖片大小。
方法如下:
找到并打開手機端的文章內(nèi)容頁模板,將里面的{dede:field.body/}標(biāo)簽修改一下,改為如下的標(biāo)簽:
{dede:field.body runphp=yes} global $cfg_basehost; $str = @me; $search = '/(<img.*?)width=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is'; $search1 = '/(<img.*?)height=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is'; $search2 = '#(<img.*?style=".*?)width:\d+px;([^"]*?.*?>)#i'; $search3 = '#(<img.*?style=".*?)height:\d+px;([^"]*?.*?>)#i'; $content = preg_replace($search,'$1$3',$str); $content = preg_replace($search1,'$1$3',$content); $content = preg_replace($search2,'$1$2',$content); $content = preg_replace($search3,'$1$2',$content); @me = $content; //@me = str_replace('/uploads/allimg/', $cfg_basehost.'/uploads/allimg/', $content);//手機版圖片使用絕對路徑 {/dede:field.body} |
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢DedeCMS手機端文章內(nèi)容圖片設(shè)置自適應(yīng)屏幕的方法