js代码
<script type="text/javascript"> $(window).scroll(function () { if ($(this).scrollTop() > 100) { $(".c_meau").stop().show().animate({ bottom: '100px' }, 300); } else { $(".c_meau").stop().animate({ bottom: '-430px' }, 300); } }); $('.c_meau .fr_t').click(function () { $('body,html').animate({ scrollTop: 0 }, 500); $(".c_meau").animate({ bottom: '-380px', opacity: '0' }, 500); return false; }); </script>