以下のように、「クリック」機能によって制御される動的な高さを持つ div がいくつかあります。
$('.expand').click(function() {
$(this).next('.collapse').slideToggle();
});
jQuery wookmark プラグインを divに適用しようとしていますが、セクションの 1 つを展開して高さが動的にサイズ変更される場合を除いて、機能します。ドキュメントから、例の1つをコードにコピーしたところ、動的な高さが機能しました
$(document).ready(new function() {
// Prepare layout options.
var options = {
autoResize: true, // This will auto-update the layout when the browser window is resized.
container: $('#container'), // Optional, used for some extra CSS styling
offset: 30, // Optional, the distance between grid items
itemWidth: 300 // Optional, the width of a grid item
};
// Get a reference to your grid items.
var handler = $('.outerwrapper');
// Call the layout function.
handler.wookmark(options);
// Capture clicks on grid items.
handler.click(function(){
// Randomize the height of the clicked item.
var newHeight = $('img', this).height() + Math.round(Math.random()*300+30);
$(this).css('height', newHeight+'px');
// Update the layout.
handler.wookmark();
});
});
これが機能しているのを見ることができますhere。例のように、div 内の見出しの 1 つをクリックすると、レイアウトが更新されるようにするにはどうすればよいですか。前もって感謝します。