去除和重新布局后同位素随机播放

时间:2013-03-13 23:29:54

标签: jquery-isotope shuffle

我有一个随机播放按钮,可以在我的同位素设置中正常工作,直到我删除一些项目。尝试删除一个集团,然后进行随机播放:http://apany.com/assistants/

      $('#shuffle').click(function(){
    $container.isotope('shuffle');
  });

  $('.delete').click(function(){
    $(this).parent().remove();
    $container.isotope('reLayout');
    return false;
  });

我完全不在这里。任何帮助都将非常感激。

1 个答案:

答案 0 :(得分:1)

您正在使用jQuery删除功能而不是Isotope删除功能。我相信您需要将删除行更改为:

$container.isotope( 'remove', $(this).parent() );