小程序模板網(wǎng)

微信小程序開發(fā)-rem轉(zhuǎn)換rpx小工具

發(fā)布時間:2018-05-07 14:54 所屬欄目:小程序開發(fā)教程

實現(xiàn)原理:

對樣式進行格式化,然后根據(jù) “rem” 進行拆分,這樣就會拆分成一個數(shù)組 [str1,str2,str3...,str6],

除了最后一個元素,前邊的元素都會以 “rem” 樣式的數(shù)值結尾,

然后在對數(shù)組中的元素字符串進行再次根據(jù) “:” 進行拆分,這樣就把原rem樣式的數(shù)字給提取出來了,然后就根據(jù)規(guī)則轉(zhuǎn)換成rpx的數(shù)值,重新組合就好了。

css格式化工具:https://tool.lu/css/

 

源碼:

 

				
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. div#newCss{
  8. border:1px solid #999;
  9. width:504px;
  10. height:140px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <script type="text/javascript">
  16. function rem2rpx() {
  17. var oldCss = document.getElementById("css").value.trim(); //".similar_recommend .title{margin:.3rem 0 0;padding-top:.4rem;color:#666;font-size:.28rem;}"
  18. //對原樣式根據(jù)rem進行拆分成數(shù)組,這樣除了最后一個元素,數(shù)組前邊的幾個元素都是以原rem樣式數(shù)值結尾
  19. //拆分后的格式:[".similar_recommend{background:#fff;border-radius:.1", ";height:7.4", ";margin-top:-.3", "}"]
  20. var newCssArr = oldCss.split("rem")
  21. var newCss = "" //轉(zhuǎn)換后新的樣式變量
  22. for(var i in newCssArr) {
  23. if(i < newCssArr.length - 1) {
  24. //非最后一個元素,對字符串按照:再次拆分,把rem樣式的數(shù)值分離出來進行轉(zhuǎn)換
  25. var str = newCssArr[i]
  26. var idx = str.lastIndexOf(':')
  27. var prevStr = str.substring(0, idx + 1)
  28. var nextStr = ""//nextStr格式為 -.3 , -3 , 3 , .3
  29. if(str.indexOf('-.')>-1){
  30. //nextStr格式為-.3rem或-3rem
  31. nextStr = str.substring(str.indexOf(':-')+2, str.length)
  32. //nextStr格式為.3rem或3rem
  33. if(nextStr.indexOf('.')>-1){
  34. nextStr ="0"+ nextStr
  35. }
  36. nextStr = "-"+parseInt(nextStr * 100) + "rpx"
  37. }else{
  38. nextStr = str.substring(idx + 1, str.length)
  39. nextStr = nextStr.indexOf('.') > -1 ? "0" + nextStr : nextStr
  40. nextStr = parseInt(nextStr * 100) + "rpx"
  41. }
  42.  
  43. //重組數(shù)組內(nèi)的樣式字符串
  44. newCss += prevStr + "" + nextStr
  45. }else{
  46. //追加最后一個數(shù)組元素
  47. newCss+=newCssArr[i]
  48. }
  49. }
  50. document.getElementById("newCss").innerHTML=newCss
  51. }
  52. </script>
  53. <h4>rem樣式</h4>
  54. <textarea id="css" cols="60" rows="10"></textarea>
  55. <br />
  56. <input type="button" value="rem轉(zhuǎn)換rpx" onclick="rem2rpx()" />
  57. <h4>轉(zhuǎn)換后的樣式</h4>
  58. <div id="newCss"></div>
  59. </body>
  60. </html>


易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開源 碼云倉庫:starfork
本文地址:http://22321a.com/wxmini/doc/course/24284.html 復制鏈接 如需定制請聯(lián)系易優(yōu)客服咨詢:800182392 點擊咨詢
QQ在線咨詢