Absolute Positioned Floating Header Jitters in Safari

前端 未结 6 822
刺人心
刺人心 2020-12-31 02:52

I have a simple JSFiddle of a single floating header here:

http://jsfiddle.net/zT9KQ/

Basically, this uses translate3d to kick in the GPU and ha

6条回答
  •  粉色の甜心
    2020-12-31 03:30

    Scroll events are sent asynchronously in various browsers; you should not rely on them to do things like this.

    The best solution would be to use position:-webkit-sticky; top: 0;

提交回复
热议问题