スクロールで表示

JS
// SCROLL
$(window).on(‘load scroll’, function(){
if ($(window).scrollTop() > 200) {
$(‘.is_flow’).fadeIn(400);
} else {
$(‘.is_flow’).fadeOut(400);
}
});

htmlにclass .is_flowを指定する