Javascript - 执行多个不同的window.onscroll

时间:2016-10-12 12:29:21

标签: javascript function onscroll

我在这里遇到一个小问题。我有关于Javascript的基本知识,我想做以下事情:

现在,当您向下滚动时,菜单会变小。当你回来时,它会恢复正常。我用window.onscroll:

调用此事件
var diff = 0;
function effects(){
var topDistance = (document.documentElement &&     document.documentElement.scrollTop) ||  document.body.scrollTop;
var clientWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
var clientHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;

if(topDistance > diff){ 
    diff = topDistance;
    if(clientWidth > 1024){
        if(topDistance > 300){
            document.getElementById("header").style.marginTop= "-100px";
        }
    }
}else if(topDistance < diff){
    diff = topDistance;
    if(clientWidth > 1024){
        if(topDistance > 300){
            document.getElementById("header").style.marginTop= "0";
        }
    }
}
}

window.onscroll = effects();

现在我想让另一个函数对我的号召性用语按钮产生一些效果,让我们调用函数&#34; test&#34;,但如果我想以同样的方式执行此操作,效果函数不会再努力了:

function test(){
//do something
}
window.onscroll = test();

欢迎任何帮助!我觉得这样做不会是一个很大的挑战,但我猜错了。 (PS:NO JQUERY PLEASE)

2 个答案:

答案 0 :(得分:16)

通过执行window.onscroll = blabla

覆盖onscroll功能

你可以这样做:

window.onscroll = function() {
  effects();
  test();
}

window.addEventListener('scroll', effects);
window.addEventListener('scroll', test);

答案 1 :(得分:7)

您可以为滚动事件使用多个侦听器。

window.addEventListener('scroll', effects);
window.addEventListener('scroll', test);

这样你就不会覆盖window.onscroll