$(function(){ // TOPã«æˆ»ã‚‹ãƒœã‚¿ãƒ³ var topBtn = $('#page-top'); //スクãƒãƒ¼ãƒ«ãŒ100ã«é”ã—ãŸã‚‰ãƒœã‚¿ãƒ³è¡¨ç¤º $(window).scroll(function () { var w = $(window).width(); if ($(this).scrollTop() > 100) { topBtn.addClass('done'); } else { topBtn.removeClass('done'); } if ($(this).scrollTop() > 0) { $('header').addClass('done'); } else { $('header').removeClass('done'); } }); //スクãƒãƒ¼ãƒ«ã—ã¦ãƒˆãƒƒãƒ—㸠topBtn.click(function () { $('body,html').animate({ scrollTop: 0 }, 500); return false; }); });