3

当我将方向从纵向更改为横向时, 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");
}

任何人都可以帮忙吗?

4

1 回答 1

0

您可以尝试调整事件大小

window.addEventListener("resize", function() {
// Get screen size (inner/outerWidth, inner/outerHeight)
}, false);
于 2012-12-03T09:59:32.107 回答