有一个浮动QQ客服,修改到网页右下角
有一个浮动QQ客服,谁能帮忙把代码改成固定在网页右下角的代码地址百度网盘下载地址:http://pan.baidu.com/s/1hqebM88改完后另追加50分。就是把...
有一个浮动QQ客服,谁能帮忙把 代码 改成固定在 网页右下角 的
代码地址百度网盘下载地址:http://pan.baidu.com/s/1hqebM88
改完后另追加50分。
就是把它固定到网页右下角,上下滚动都在右下角。现在它是在中间。不知道怎么改,求高手解决。 展开
代码地址百度网盘下载地址:http://pan.baidu.com/s/1hqebM88
改完后另追加50分。
就是把它固定到网页右下角,上下滚动都在右下角。现在它是在中间。不知道怎么改,求高手解决。 展开
2个回答
展开全部
$(function () {
var contachTop = 0; // 右侧联系我们默认高度
function Qust_contachScroll (){
var st = 0;
if (document.documentElement && document.documentElement.scrollTop) {
st = document.documentElement.scrollTop;
} else if (document.body) {
st = document.body.scrollTop;
}
var contactTop = $(".qust_contach").offset().top;
var height = $(".qust_contach").height();
if ( st>80) {
var top = (document.documentElement.clientHeight - height)/2+st -80;
$(".qust_contach").stop().animate(
{
top: top
},300,null,function(){
$("#toTop").stop().animate({
height:45
});
});
} else {
var top = (document.documentElement.clientHeight - height)/2 -80;
//$(".qust_contach").css({
//top: top
//});
if(top<=0)
{
top=contachTop
}
$(".qust_contach").stop().animate(
{
top: top
},300,null,function(){
$("#toTop").stop().animate({
height:0
});
});
}
}
function qust_showScroll(){
var st = 0;
if (document.documentElement && document.documentElement.scrollTop) {
st = document.documentElement.scrollTop;
} else if (document.body) {
st = document.body.scrollTop;
}
var contactTop = $(".qust_show").offset().top;
var height = $(".qust_show").height();
if ( st>80) {
var top = (document.documentElement.clientHeight - height)/2+st -80;
$(".qust_show").stop().animate(
{
top: top
},300);
} else {
var top = (document.documentElement.clientHeight - height)/2 -80;
//$(".qust_contach").css({
//top: top
//});
if(top<=0)
{
top=contachTop
}
$(".qust_show").stop().animate(
{
top: top
},300);
}
}
Qust_contachScroll();
qust_showScroll();
$(window).scroll(function () {
Qust_contachScroll();
qust_showScroll();
});
$(window).resize(function () {
Qust_contachScroll();
qust_showScroll();
});
$(".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);
});
});
你的这个代码比较老,css属性有好多都不支持,建议换个吧!高度控制在js2文件夹下的contact.js里修改,默认高度是100,我已修改成为0(已没有高度),没有用哟!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询