日期:2014-05-17 浏览次数:20556 次
<a href="#header" title="回到顶部" class="abgne_gotoheader"></a>
$(function () {
$(window).bind("scroll", function () {
//show top menu list block
if ($(this).scrollTop() >= 300){
//$(".abgne_gotoheader").fadeIn(1000);
$(".abgne_gotoheader").fadeIn(1000);
var _right=(($(document).width()-1155)/2 -50);
$(".abgne_gotoheader").css("right",_right+"px");
}else{
$(".abgne_gotoheader").hide();
}
});
});
//back top
$(function(){
$("a.abgne_gotoheader").hover(function(){
$(this).css("background","url('images/top_tip.jpg') no-repeat -50px 0");
},function(){
$(this).css("background","url('images/top_tip.jpg') no-repeat 0 0");
});
$('a.abgne_gotoheader').click(function(){
var $body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
&