梅州羚羊科技有限公司招聘Golang/Go工程师
var global = {
h:$(window).height(),
st: $(window).scrollTop(),
backTop:function(){
global.st > (global.h*0.5) ? $("#backtop").show() : $("#backtop").hide();
}
}
$('#backtop').on('click',function(){
$("html,body").animate({"scrollTop":0},500);
});
global.backTop();
$(window).scroll(function(){
global.h = $(window).height();
global.st = $(window).scrollTop();
global.backTop();
});
$(window).resize(function(){
global.h = $(window).height();
global.st = $(window).scrollTop();
global.backTop();
});
var app_qq = "";
var qq_open = "";
if(app_qq != '' && qq_open == 1){
var QQFloatUrl = "/qqfloat/index/index.html";
$.getJSON(QQFloatUrl, function (result) {
if (result.status == 1) {
$("body").append(result.data);
}
});
}