阅读完doc后,我设法通过以下代码手动调用打开url(图像)
$.nmManual(this.href);
但是现在我想手动调用nyroModal画廊过滤器到目前为止没有任何运气。我尝试在gallery
回调中推送过滤器.nmManual()
,但它没有做任何事情。
答案 0 :(得分:0)
我通过手动调用处理了这个需求,并使用了这个解决方法:
<div style="display:none;">
<?php $i=0; ?>
<?php foreach ($Gallery as $item): ?>
<?php if ($item->hasPhoto()): ?>
<a id="photo<?php echo $i ?>" href="<?php echo $item->getRelativePhotoPath() ?>" class="photo_gallery" title="<?php echo $item->getCaption() ?>" rel="gal"></a>
<?php $i++; ?>
<?php endif; ?>
<?php endforeach; ?>
</div>
$(document).ready(function() {
// #photo_gallery is the css selector of the anchor link used to start the gallery
if ($('#photo_gallery').length != 0 && $('.photo_gallery').length != 0)
{
$('.photo_gallery').nyroModal();
$('#photo_gallery').click(function(e) {
e.preventDefault();
$('#photo0').click();
});
}
});
我希望这可以帮到你。