前提・実現したいこと
https://codepen.io/knyttneve/pen/bgvmmaをwordpressのページとして表示させたい。
発生している問題・エラーメッセージ
$("#timeline-1").timeline();に対し以下のエラーメッセージが表示される。
Uncaught TypeError: $ is not a function
該当のソースコード
jQuery
1(function($) { 2 $.fn.timeline = function() { 3 var selectors = { 4 id: $(this), 5 item: $(this).find(".timeline-item"), 6 activeClass: "timeline-item--active", 7 img: ".timeline__img" 8 }; 9 selectors.item.eq(0).addClass(selectors.activeClass); 10 selectors.id.css( 11 "background-image", 12 "url(" + 13 selectors.item 14 .first() 15 .find(selectors.img) 16 .attr("src") + 17 ")" 18 ); 19 var itemLength = selectors.item.length; 20 $(window).scroll(function() { 21 var max, min; 22 var pos = $(this).scrollTop(); 23 selectors.item.each(function(i) { 24 min = $(this).offset().top; 25 max = $(this).height() + $(this).offset().top; 26 var that = $(this); 27 if (i == itemLength - 2 && pos > min + $(this).height() / 2) { 28 selectors.item.removeClass(selectors.activeClass); 29 selectors.id.css( 30 "background-image", 31 "url(" + 32 selectors.item 33 .last() 34 .find(selectors.img) 35 .attr("src") + 36 ")" 37 ); 38 selectors.item.last().addClass(selectors.activeClass); 39 } else if (pos <= max - 40 && pos >= min) { 40 selectors.id.css( 41 "background-image", 42 "url(" + 43 $(this) 44 .find(selectors.img) 45 .attr("src") + 46 ")" 47 ); 48 selectors.item.removeClass(selectors.activeClass); 49 $(this).addClass(selectors.activeClass); 50 } 51 }); 52 }); 53 }; 54})(jQuery); 55 56$("#timeline-1").timeline(); 57
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/06 14:41