// JavaScript Document $(function(){ $('.box_inview').css('opacity', 0); /*--------------------------------------- 表示されてるか inview ----------------------------------------*/ $('.box_inview').on('inview', function(event, isInView, visiblePartX, visiblePartY) { if(isInView){ if (visiblePartY == 'both') { $(this).stop().animate({opacity:1}, 300); //女性総数 if($('#girl_num').text() == 0){ $('#girl_num').animateNumber({ number: girl_num }); } } } else { //$(this).stop().animate({opacity: 0}, 300); } }); $(window).load(function(){ }); });