我正在使用Facebook的“页面插件”小部件。在Facebook's page上写着:
如果要在窗口调整大小时调整插件的宽度,则需要手动重新插入插件。
如何在不刷新页面的情况下动态更改此插件的宽度(例如,使用Firefox responsive view - CTRL + M快捷键)。
是的,我已经阅读了THIS帖子,但这些解决方案都没有说明如何重新插入插件。
答案 0 :(得分:19)
对于JavaScript / jQuery方法,您可能希望收听窗口调整大小事件并重新加载Facebook页面插件Div容器。确保FB页面插件包裹在父div中,这样我们可以在重新加载div时使用它的大小。
<div id="pageContainer">
<div class="fb-page" data-href="https://www.facebook.com/facebook" data-width="500" data-height="250" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true" data-show-posts="true"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/facebook"><a href="https://www.facebook.com/facebook">Facebook</a></blockquote></div></div>
</div>
$( window ).resize(function() {
var container_width = $('#pageContainer').width();
$('#pageContainer').html('<div class="fb-page" data-href="https://www.facebook.com/facebook" data-width="' + container_width + '" data-height="250" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true" data-show-posts="true"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/facebook"><a href="https://www.facebook.com/facebook">Facebook</a></blockquote></div></div>');
FB.XFBML.parse();
});
答案 1 :(得分:10)
此问题的解决方案是:
(function($){
var a = null;
$(window).resize(function(){
if(a != null) {
clearTimeout(a);
}
a = setTimeout(function(){
FB.XFBML.parse();
},1000)
})
})(jQuery)
答案 2 :(得分:6)
是的,facebook页面插件(以及其他插件)仅在页面加载时呈现。如果这个插件被隐藏(或渲染后窗口调整大小),你需要告诉FB重新渲染他的插件。这在显示/调整大小后调用FB.XFBML.parse()非常有效。
你可以这样做:
HTML中的:
<div class="fb-page" data-href="{url}" data-hide-cover="false" data-show-facepile="true" data-show-posts="false"><div class="fb-xfbml-parse-ignore"><blockquote cite="{url}"><a href="{url}">{title}</a></blockquote></div></div>
在Javascript中:
function changeFBPagePlugin(width, height, url) {
if (!isNaN(width) && !isNaN(height)) {
$(".fb-page").attr("data-width", width).attr("data-height", height);
}
if (url) {
$(".fb-page").attr("data-href", url);
}
FB.XFBML.parse();
}
只需要重新渲染(如果你想隐藏后显示插件)
changeFBPagePlugin(355, 244);
或
changeFBPagePlugin(355, 244, "https://facebook.com/PageNameHere");
如果你想更改其他FB页面插件
答案 3 :(得分:3)
解决方案是:
FB.XFBML.parse();
在追加&#34;隐藏&#34;后解决了我所有隐藏的facebook插件的问题。使用上面的jsfiddle中的菜单将div的内容转换为主div。
Menu appending content from hidden divs into a main div
我正在使用另一个菜单,这就是我要做的事情。
我在我的函数中使用FB.XFBML.parse();
,在return false;
之前它完美地用于页面,评论,喜欢,现在每次点击菜单时都会解析所有插件。
谢谢。
答案 4 :(得分:0)
使用上述答案中的代码,以下代码适用于我:
<div id="fb-root"></div>
<!--
From https://developers.facebook.com/docs/plugins/page-plugin/
-->
<div id="Facebook-Widget">
<div class="fb-page" data-href="{url}" data-tabs="timeline"
data-small-header="false" data-adapt-container-width="true"
data-hide-cover="false" data-show-facepile="true">
<blockquote cite="{url}" class="fb-xfbml-parse-ignore"><a
href="{url}">{title}</a></blockquote>
</div>
</div>
<script type="text/javascript">
var Example =
{
foFuncTimeOut: null,
//----------------------------------------------------------------------------------------------------
initializeRoutines: function ()
{
// Facebook sidebar
// From https://developers.facebook.com/docs/plugins/page-plugin/
(function (d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
{
return;
}
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.10";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
},
// -------------------------------------------------------------------------------------------------------------------
setupFacebook: function ()
{
var loWidget = jQuery('#Facebook-Widget');
if (loWidget.length == 0)
{
return;
}
Example.resizeFacebook(loWidget);
jQuery(window).resize(function ()
{
Example.resizeFacebook(loWidget);
});
},
// -------------------------------------------------------------------------------------------------------------------
// From http://stackoverflow.com/questions/30083986/facebook-page-plugin-rerender-change-width-dynamically-responsive-rwd
resizeFacebook: function (toWidget)
{
if (Routines.foFuncTimeOut != null)
{
clearTimeout(Routines.foFuncTimeOut);
}
Routines.foFuncTimeOut = setTimeout(function ()
{
// Query the block above the Facebook widget.
var lnWidth = jQuery('#block-views-block-blog-management-blog-listing-block').width();
if (lnWidth < 180)
{
lnWidth = 180;
}
if (lnWidth > 500)
{
lnWidth = 500;
}
var lnHeight = (jQuery(window).width() >= 768) ? 1200 : 700;
toWidget.css('width', lnWidth + 'px');
toWidget.css('height', lnHeight + 'px');
var loFB = toWidget.find('.fb-page');
loFB.css('width', lnWidth + 'px');
loFB.css('height', lnHeight + 'px');
// data-width & data-height only accept whole numbers.
loFB.attr('data-width', Math.floor(lnWidth));
loFB.attr('data-height', Math.floor(lnHeight));
if (typeof FB !== 'undefined')
{
FB.XFBML.parse();
}
}, 1000);
},
//----------------------------------------------------------------------------------------------------
};
Example.initializeRoutines();
Example.setupFacebook();
</script>