3
當我將縱向更改爲縱向時,我遇到iScroll問題。它正在AppMobi XDK上工作,但在iPhone上,它不能正確渲染。我試圖捕獲orientationchange
事件,並用不同的超時值調用iScroll的刷新方法,但沒有運氣。方向更改時出現iscroll問題
// My code sample for the orientation change event
document.addEventListener("appMobi.device.orientation.change", orientationChange, false);
function orientationChange(){
setTimeout(function() { myScroll.refresh() }, 0);
//alert("Orientation Change");
}
任何人都可以幫忙嗎?