我已经为我的 facebook 页面构建了一个自定义的 facebook 侧边栏,它在 UL 内以 LI 标记显示消息。
我不希望这个 UL 框变得比页面的其他内容长,所以我让它显示前 5 条消息。
最近,我开始发布更长的消息,因此 5 条消息变得比其他内容更长。现在可以减少 5 条消息,比如说:3 条消息。
然而,这需要每周手动调整,这不是最佳的。
现在我让我的 ul 具有以下 css 属性:
.facebooklist{ 高度:800px; overflow:hidden } 然而,这会切断最后一条消息。
我想显示尽可能多的包含我的页面消息的 li 项目,直到框达到 800 像素或更高的高度。
这可能吗?如果是这样,怎么办?
作为参考,请在此处查看我的页面: 图片
侧边栏位于右侧。
编码:
<div class = "fbheader"><img class = "flogo" src = "img/f_logo.png"/><a class = "ftext" href="https://www.facebook.com/WIEWIE4life">WIEWIE</a><iframe class ="fiframe" src="//www.facebook.com/plugins/like?href=http%3A%2F%2Fwww.facebook.com%2FWIEWIE4life&send=false&layout=standard&width=10&show_faces=false&font&colorscheme=light&action=like&height=35&appId=520187094675923&locale=en_US" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px; height:25px; float:right;" allowTransparency="true"></iframe></div>
<ul class = "facebooklist">
<?php
$page = file_get_contents('https://graph.facebook.com/WIEWIE4life/feed?access_token=520187094675923|OcGraoxcC7OH7gurPtx9Rqb8KnA');
$data = json_decode($page);
$x = 0;
foreach ($data->data as $news ) {
$StatusID = explode("_", $news->id);
if (!empty($news->message) && !($temp > 5)){
$temp = $temp + 1;
?>
<li class = "bericht">
<?php
$x = new DateTime($news->updated_time);
$x->setTimezone(new DateTimeZone('Europe/Amsterdam'));
$time = $x->format(DATE_ATOM);
$x = explode("T",$time);
$x[1] = substr($x[1],0,-9);
echo "<h6 class = 'date'>". $news->from->name . " - " . $x[0]. " ".$x[1]."</h6>";
?>
<?php
echo "<p class = 'message'>" . $news->message . "</p>";
?>
</li>
<?php
}
}
?>
</ul>
</div>
提前致谢!