0
這裏是我的標記:計數高度並調整爲每篇文章
<div class="content">
<div class="content_expander">
{newsrow.MESSAGE}
</div>
<a href="#" class="expand">Rozwiń</a>
</div>
我敢用列出從論壇我的職位。
.content div
高度默認爲500px,.content_expander
是文章高度(有時高於父div)。
我想要實現的是能夠展開和摺疊.content div
以顯示/隱藏整篇文章。
因此,有什麼我已經嘗試:
$(document).ready(function(){
$("article .content").each(function() {
var boxHeight = 500;
var insideHeight = $(this).find(".content_expander").height();
//alert(insideHeight);
if(boxHeight<insideHeight) {
$(this).children(".expand").css({
opacity: 0,
display: 'inline-block'
}).animate({opacity:1},600);
}
});
$('.expand').click(function(){
var elementToChange = $(this).parent().find(".content_expander");
newHeight = elementToChange.height();
elementToChange.parent().animate({
height: newHeight + 'px',
}, 500);
$(this).addClass('collapse');
$(this).removeClass('expand');
$(this).html('Collapse');
return false;
});
$('.collapse').click(function(){
var elementToChange = $(this).parent().find(".content_expander");
newHeight = elementToChange.height();
elementToChange.parent().animate({
height: '500px',
}, 500);
$(this).addClass('expand');
$(this).removeClass('collapse');
$(this).html('Expand');
return false;
});
});
請問你們幫我提高了嗎? :/
是的,我知道這種方式,但我想保持「500px部分」一直可見,如果有更多的內容切換上/下。 – webkoala