一道本av免费不卡播放_久久国产精品无码99_日韩精品亚洲精品第一页_日韩免费A级二区三区

全網(wǎng)整合營(yíng)銷服務(wù)商

電腦端+手機(jī)端+微信端=數(shù)據(jù)同步管理

免費(fèi)咨詢熱線:0595-85188098

微信小程序中的ios兼容性問題

記錄下在微信小程序中遇到的一些兼容性問題,ios兼容性

 
 
 

1.ios中input的placeholder屬性字體不居中

  • 對(duì)placeholder設(shè)置line-height及font-size
  • 對(duì)input設(shè)置高度

2.ios中滾動(dòng)卡頓

  • 設(shè)置-webkit-overflow-scrolling:touch;

3.微信小程序中解決ios中new Date() 時(shí)間格式不兼容

  • 在實(shí)現(xiàn)倒計(jì)時(shí),根據(jù)后臺(tái)返回的時(shí)間格式轉(zhuǎn)換時(shí),后臺(tái)返回了時(shí)間格式為”2018-11-12 11:12:11”,然后利用new Date() 轉(zhuǎn)換時(shí),ios中無法展示,安卓中顯示正常
let time = '2018-12-10 11:11:11';
let temporaryTime1 = new Date(time);
this.setData({
   timeRemain1: temporaryTime1,
})
/* 利用正則表達(dá)式替換時(shí)間中的”-”為”/”即可 */
let time = '2018-12-10 11:11:11';
let temporaryTime = new Date(time.replace(/-/g,'/'));
let temporaryTime1 = new Date(time);
this.setData({
    timeRemain: temporaryTime,
    timeRemain1: temporaryTime1,
 })

4. 微信小程序scroll-view隱藏滾動(dòng)條方法

  • 在wxss里加入以下代碼:
::-webkit-scrollbar{
width0;
height0;
color: transparent;
}
暫時(shí)遇到的兼容性就是這么多,會(huì)持續(xù)更新,若大家有遇到,可在評(píng)論區(qū)告知下,感謝

 


正在努力學(xué)習(xí)中,若對(duì)你的學(xué)習(xí)有幫助,留下你的印記唄(點(diǎn)個(gè)贊咯^_^)

您的項(xiàng)目需求

*請(qǐng)認(rèn)真填寫需求信息,我們會(huì)在24小時(shí)內(nèi)與您取得聯(lián)系。