我有一个Splash页面,我需要使用'滚动进入'为了回家,但我需要进入其他页面。 所以,我现在使用这段代码进行点击输入,可以用滚动功能实现这段代码吗?
$(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/"
});
});
答案 0 :(得分:2)
如果您想听鼠标滚轮,可以这样做:
$('.page-splash-page"').bind('mousewheel DOMMouseScroll', function(event){
window.location = "http://localhost:8888/solaris/it/work/"
});