6

有没有办法在已经打开的Magnific Popup中动态添加画廊项目?(或更新当前项目)。在插件文档中找不到任何关于 in 的内容。

4

1 回答 1

9

是的,有可能:

// get instance (after popup was opened)
var mfp = $.magnificPopup.instance;

// modify the items array (push/remove/edit)
mfp.items.push({
    src: "some-image.jpg"
});

// call update method to refresh counters (if required)
mfp.updateItemHTML();

关于放入items数组的内容,请参阅文档 - http://dimsemenov.com/plugins/magnific-popup/documentation.html#from-the-items-option

于 2013-11-07T11:47:52.200 回答