<div class="js-countup">1990</div>
function numberCountUp() { var selector = '.js-countup'; // 対象のDOMのセレクタ var $years = $(selector); $years.each(function () { var year = $(this).text(); $(this).text(year - 80); var tempyear = year - 80; var self = this; var scrollStart = function () { if (( $(self).offset().top - 700) < $(window).scrollTop()) { var interval = setInterval(function () { if (tempyear < year) { tempyear++; $(self).text(tempyear); } else { clearInterval(interval); return false; } }, 15) } else { window.requestAnimationFrame(scrollStart) } } window.requestAnimationFrame(scrollStart) }); } $(function(){ numberCountUp(); })
Udemyを実際に体験した方の感想記事もぜひご覧ください♪