0

跳槽有人可以帮助解决这个问题。

当有人在我们的某个产品页面上点击“喜欢”时,下拉的评论部分会位于 twitter/google 社交按钮的后面,我似乎无法准确指出问题所在。我尝试将溢出设置为可见/自动并且没有运气,但是当我更改高度时它看起来没问题(尽管我不想更改高度而是它出现在顶部)。

facebook按钮周围的代码如下:

<div class="product-link">


    <iframe src="http://www.facebook.com/plugins/like.php?href=http://foscam-uk.com/indoor-ip-cameras/foscam-fi8918e-black-wired-ip-camera.html&send=false&layout=standard&width=450&show_faces=true&action=like&colorscheme=light&appId=317980981630590"

        scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:auto; width:450px; height:30px">" </iframe>

<a href="https://twitter.com/share" class="twitter-share-button" data-via="FoscamUK">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script><g:plusone size="medium"></g:plusone></div>


        </div>

也是产品页面的链接(可能更有用): http: //foscam-uk.com/foscam-fi8910w.html

非常感谢你的帮助。

问候

4

1 回答 1

1

iframe 上的高度和溢出的组合似乎不像您预期​​的那样工作。

我的建议:将 iframe 嵌入到 DIV 元素中,并将该 DIV 元素格式化如下:

<div id="foobar"><iframe …&gt;</div>

#foobar {
  height:   30px:
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#foobar:hover {
  overflow: visible;
}

之后,评论栏应该出现在 twitter/g+ 按钮上。

但是,已经喜欢您页面的用户的“面孔”随后会显示在 twitter/g+ 按钮上。我建议您&show_faces=true从 iframe 的 URL 中删除该参数,因为显示面孔不会真正适合您要使用的页面布局。

于 2012-08-25T13:18:28.057 回答