我試圖添加一個懸停功能,它將類添加到我的標題。我已經得到了這個代碼,但在滾動上。Jquery頭添加類上懸停
$(document).ready(function(){
jQuery(window).trigger('resize').trigger('scroll');
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 1) {
header.removeClass('scroll').addClass("cover");
$('#phantom').show();
$('#phantom').css('height', Heightcalculate+'px');
} else {
header.removeClass("cover").addClass('scroll');
$('#phantom').hide();
}
});
有沒有辦法編輯這個現有的代碼,所以它相同,但懸停?我試過了我能想到的一切,它不會工作。 在此先感謝。
你試過['.hover()'](https://api.jquery.com/hover/)功能? – Satpal
https://api.jquery.com/hover/ –
嘗試'$(「elemnt」)。hover()' – Nadim