0
我試圖在我的WordPress網站上實現淡入淡出效果(向下滾動)。 我按照這個教程:http://www.ordinarycoder.com/jquery-fade-content-scroll/ 問題是,當我複製粘貼我的頁面正文中的標籤之間的JS代碼,它不起作用(錯誤控制檯說,$不是一個函數)。我做錯了什麼? 謝謝,
<script>
$(function() {
$(window).scroll(function(){
$('.fadeInBlock').each(function(i){
var bottom_of_object = $(this).position().top + $(this).outerHeight();
var bottom_of_window = $(window).scrollTop() + $(window).height();
/* Adjust the "200" to either have a delay or that the content starts fading a bit before you reach it */
bottom_of_window = bottom_of_window + 200;
if(bottom_of_window > bottom_of_object){
$(this).animate({'opacity':'1'},500);
}
});
});
});
</script>
第二行之後的代碼都沒有與此問題相關。 –