javascript-优化Internet Explorer 11的滚动速度
作者:互联网
我目前有一个类似议程的应用程序,其中第一列是绝对水平的,第一行是绝对垂直的.我通过捕获滚动效果并更改其附加到的CSS类的left或top属性来实现这一点. (这些课程最多可以包含700个项目(每天2年)).
$(window).scroll(function () {
$('.Planning tr > td:first-child').css("left", "" + $(this).scrollLeft() + "px");
$('.Planning thead > tr:first-child').css("top", $(this).scrollTop()+50 + "px");
});
在所有浏览器中都能正常工作(我在Chrome,Firefox和Internet Explorer中测试过)
但是在Internet Explorer上,它非常慢.
仅在您停止滚动后才显示滚动条,而在Chrome和Firefox中,第一行看起来像是固定的,看起来更好并且更加用户友好.
有什么办法可以促进这一点吗?还是针对Internet Explorer优化的任何库,这样我就可以避免IE中的这种“缓慢”行为?
https://jsfiddle.net/7mfcrLh5/12/对于jsfiddle示例(在chrome中效果很好,但在Internet Explorer中效果不佳)
解决方法:
您可以尝试每100毫秒或200毫秒将滚动功能的功能设置为throttle,这仍然非常快.
var planningCol = $('.Planning tr > td:first-child'),
planningHead = $('.Planning thead > tr:first-child');
$(window).scroll(function(){
var self = this;
throttle(function(){
planningCol.css({ left: $(self).scrollLeft() });
planningHead.css('top', $(self).scrollTop() + 50 + 'px');
}(), 200); // call your function directly upon return
});
或者,您可以在正文上使用CSS,检测何时滚动页面或滚动页面.然后应用.scrolling {指针事件:无!重要; },这将增强UI.
如果选择始终相同,也请尝试将其移出滚动功能.
var win = $(window),
body = $(document.body),
planning = $('.Planning'),
planningCol = planning.find('tr > td').first(),
planningHead = planning.find('thead > tr').first();
win.scroll(function(){
// scrolled
body.toggleClass('scrolled', !!win.scrollTop());
// scrolling
body.addClass('scrolling');
planningCol.css({ left: win.scrollLeft() });
planningHead.css({ top: win.scrollTop() });
setTimeout(function(){
body.removeClass('scrolling');
}, 200);
});
标签:javascript,jquery,scroll,internet-explorer,internet-explorer-11 来源: https://codeday.me/bug/20191012/1898045.html