加载广告滚动条到我的网站时G + 1按钮

时间:2014-01-31 23:39:59

标签: html css html5 layout google-plus-one

我的网站有一个主div,宽度设置为~1200px并居中。

如果我把g + 1按钮放在另一个div中,它是浮动的:左边和div,内容在右边,一切都很好。可悲的是,我想把这个按钮放在我内容的右侧。在这种情况下,在加载此按钮广告水平滚动条一秒钟。

我知道这件事:google +1 button adds scroll bar to my site

但它对我不起作用。

我在谷歌上搜索它,但每个解决方案都与我上面提到的相似。

[编辑] IE&仅限FF

1 个答案:

答案 0 :(得分:0)

我发现只有一个解决方案是将g + 1按钮加载到隐藏的div,并显示此div有一些延迟。

社交div包含三个针对facebook,googleplus和twitter的社交* div。

$('#social-fb').css("opacity", "0.0");
$('#social-gp').hide();
$('#social-tw').hide();

$('#social-fb').html('...');
$('#social-gp').html('...');
$('#social-tw').html('...');

timeoutID = setTimeout(function(){
  $('#social').hide()
  $('#social-fb').css("opacity", "1.0");
  $('#social-gp').show();
  $('#social-tw').show(); 
  $('#social').fadeIn(500);
}, 2000);