// * ============================================================================ // * * 版权所有 国雾院theone ,并保留所有权利。 // * 网站地址: http://www.e80net.com // * ---------------------------------------------------------------------------- // * 这不是一个自由软件!您只能在国雾院theone的授权的前提下对程序代码进行修改和使用,不允许对程序代码以任何形式任何目的的再发布。 // * ============================================================================ ////强行声名变量 系统里的变量名只有声名过才可以用 ////开发小姐: 国雾院theone ////开发日期: 2009.8.20 ////项目名称: lq1.01 // javascript document $(function () { var contachtop = 121; // 右侧联系我们默认高度 function qust_contachscroll (){ st = document.documentelement.scrolltop; if ( st>120) { $("#totop").stop().animate({ height:45 }); } else { $("#totop").stop().animate({ height:0 }); } } qust_contachscroll(); $(window).scroll(function () { qust_contachscroll(); }); $(window).resize(function () { qust_contachscroll(); }); $(".qst_close").click(function(){ $(".qust_contach").fadeout(function(){$(".qust_show").fadein();}); }); $(".qust_show").click(function(){ $(".qust_show").fadeout(function(){$(".qust_contach").fadein();}); }); $("#totop").click(function(){ $(".qust_contach").stop().animate( { top: contachtop },300); jquery("html, body").animate({ scrolltop: 0 }, 300); }); });