是否有方法將hoverinter添加到此jquery片段?目前,如果您將鼠標懸停在「牆塊內容」類的周圍元素上,它們都會淡入/淡出。將hoverintent添加到此jquery片段
$(".wall-block-content").fadeTo("fast", 0);
$(".wall-block-content").hover(function(){
$(this).fadeTo("fast", 1);
},function(){
$(this).fadeTo("fast", 0);
});
你能舉一個例子,說明「wall-block-content class的周圍元素」嗎?也許包括一個簡單的js發生了什麼 – Ian