问答详情
源自:2-1 技术实现

侧边栏fixed的时候闪烁

滚动滚动条时候,速度稍快侧边栏闪烁的bug怎么解决

提问者:一笔一书 2016-03-10 11:31

个回答

  • core0
    2016-04-25 20:44:06

    出现跳跃 domSider.style.cssText = 'position:fixed; right:0px; top:'+(-(sideHeight-screenHeight))+'px';改成domSider.style.cssText += 'position:fixed; right:0px; top:'+(-(sideHeight-screenHeight))+'px';因为cssText会把之前的样式清空,所以要+=

  • 一笔一书
    2016-03-15 22:48:25

    试了IE 和chrome都有闪烁,chrome中加上<div style="position:fixed"></div>闪烁就消失了,但是IE上不知道怎么解决

  • btxstudio
    2016-03-14 23:12:09

    嗯,可能取决于浏览器的兼容性问题,不同内核渲染效果存在差异,仅为个人观点哈