所以我有一个带幻灯片的网站,我需要伪造固定位置,使用jQuery。它在Chrome和Firefox中完美运行但在Safari中出现故障(在找到正确的位置之前跳到顶部)。有更好的方法吗?
JS:
function fakeFixed(){
$fakeFixed = $('.fake-fixed');
$window = $(window);
$(window).scroll(function(){
$fakeFixed.each(function(){
$this = $(this);
$this.css('margin-top', $window.scrollTop() - $this.parent().position().top);
console.log();
}
});
} //cLose fakeFixed
fakeFixed();