2016-12-16 37 views

回答

2

我在官方页面(https://sachinchoolur.github.io/lightGallery/)的评论部分发现了插件作者(sachi77n)发布的以下答案。

我会在这里发布任何试图实现此功能的人。


您可以触发lightGallery的onAfterOpen.lg事件的全屏功能。

$(document).ready(function() { 
    var $lg = $('#lightgallery'); 
    $lg.lightGallery(); 
    $lg.on('onAfterOpen.lg', function(){ 
     $lg.data('lightGallery').modules.fullscreen.requestFullscreen(); 
    }); 
}); 

演示:http://codepen.io/anon/pen/xgEBZq