当我将方向从纵向更改为横向时, iScroll出现问题。它在 AppMobi XDK 上运行,但在 iPhone 上,它不能正确渲染。我试图捕获orientationchange
事件并使用不同的超时值调用 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");
}
任何人都可以帮忙吗?