gpt4 book ai didi

javascript - 滚动进入 - 但在其他页面

转载 作者:行者123 更新时间:2023-12-02 14:05:01 25 4
gpt4 key购买 nike

我有一个启动页面,我需要使用“滚动进入”进入主页,但我需要在其他页面中输入。那么,我现在使用这段代码进行点击输入,可以用滚动功能实现这段代码吗?

$(document).ready(function() {
$(".page-splash-page").click(function(){
window.location = "http://localhost:8888/solaris/it/work/"
})
});

我已经尝试过,但不起作用!

$(document).ready(function() {
$(".page-splash-page").click(function(){
window.location = "http://localhost:8888/solaris/it/work/"
});
$(".page-splash-page").scroll(function(){
window.location = "http://localhost:8888/solaris/it/work/"
});
});

最佳答案

如果你想听鼠标滚轮,你可以这样做:

$('.page-splash-page"').bind('mousewheel DOMMouseScroll', function(event){
window.location = "http://localhost:8888/solaris/it/work/"
});

关于javascript - 滚动进入 - 但在其他页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40127384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com