gpt4 book ai didi

jquery onclick事件鼠标滚动

转载 作者:行者123 更新时间:2023-11-28 02:25:05 26 4
gpt4 key购买 nike

        $header.each( function() {

var t = jQuery(this),
button = t.find('.button');

button.click(function(e) {

t.toggleClass('hide');

if ( t.hasClass('preview') ) {
return true;
} else {
e.preventDefault();
}

});

});

在上面的代码中我想改变 button.click 事件到 鼠标滚动。

即我想删除按钮并希望直接在鼠标滚动上使用 css 效果。

最佳答案

所以这是完整的答案。要收听第一个滚动条,您可以这样做:

$(document).ready(function() {
var firstScroll = false;
$(window).scroll(function() {
if(!firstScroll) {
firstScroll = false;
// Put your code here..
}
});
});

这将始终监听滚动事件,但仅在第一次滚动时运行您的代码。更高效的优雅方式是在运行代码后分离监听器,这将导致它只运行一次然后停止监听。

$(document).ready(function() {
$(window).scroll(function() {
// Put your code here..
$(window).off("scroll");
});
});

希望对您有所帮助。

关于jquery onclick事件鼠标滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47998203/

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