$(document).ready(function () { //$(".slideContent").hide(); $(".arrow-up").hide(); $(".slideArrow").click(function () { $(".slideContent").slideToggle(500); $(this).find(".arrow-up, .arrow-down").toggle(); }); }); //回上方的js --> $(document).ready(function () { $("#topBtn").hide(); $(function () { //檢查螢幕高度 var height = $(window).height(); $(window).scroll(function () { if ($(window).scrollTop() > 300) { $("#topBtn").fadeIn(); } else { $("#topBtn").fadeOut(); } }); $('#topBtn').click(function () { $('html,body').animate({ scrollTop: '0px' }, 600); return false; }); }); }); //header搜尋的js --> $(document).ready(function () { $(function () { //檢查螢幕高度 var height = $(window).height(); $(window).scroll(function () { if ($(window).scrollTop() > 5) { $(".topSearchWrap").fadeOut(200); } else { $(".topSearchWrap").fadeIn(); } }); }); }); -->