`
zimo888
  • 浏览: 13570 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

IE下WINRESIZE 卡死解决方法

 
阅读更多
IE调用winresize事件会假死,寻遍网络,最后在国外网站找到答案,靠谱。
var resizeEventTimer= null;

$(window).resize(function(){

    //IE fires multiple events hence we don't want to delay all of them but only the last one. Hence Clear if exists
    if (resizeEventTimer){
clearTimeout(resizeEventTimer);
    }

    // Set Timeout and delay for 100 ms (should be enough - increase if problem persists)
    resizeEventTimer = setTimeout(function(){

// start-mycode
var marginTop = ($(window).height() - settings.dHeight) / 3;
var marginLeft = ($(window).width() - settings.dWidth) / 2;
$('#myDiv').css({
    top: marginTop + 'px',
    left:  marginLeft + 'px'
});
// end-mycode

    }, 100);

});
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics