$(function() { // 繧ウ繝ウ繝�Φ繝�r繝輔Ρ繝�→陦ィ遉コ var contents = $('#contents'); contents.hide(); contents.fadeIn(3000); // 繝壹�繧ク繝医ャ繝励∈ $('body').append(''); var topBtn = $('#page-top'); topBtn.hide(); $(window).scroll(function () { if ($(this).scrollTop() > 100) { topBtn.fadeIn(); } else { topBtn.fadeOut(); } }); topBtn.click(function () { $('body,html').animate({ scrollTop: 0 }, 500); return false; }); // 繝ャ繝薙Η繝シ var review = parseInt($('#reviewAverage').text() , 10); var star1 = '' + '笘�'.repeat(Math.ceil(review)) + ''; var star2 = '' + '笘�'.repeat(5 - Math.ceil(review)) + ''; $('#reviewAverage').html(star1 + star2); });