gpt4 book ai didi

javascript - 观察到在背景中最大化图像滚动?

转载 作者:行者123 更新时间:2023-11-28 17:25:06 25 4
gpt4 key购买 nike

请检查插件

http://ashleydw.github.io/lightbox/#image-gallery

HTML:

<div id="myCarousel" class="carousel slide" data-interval="3000" data-ride="carousel">
<!-- Carousel indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">
<a href="http://25.media.tumblr.com/de356cd6570d7c26e73979467f296f67/tumblr_mrn3dc10Wa1r1thfzo6_1280.jpg" data-gallery="global-gallery" data-parent="" data-toggle="lightbox">
<figure>
<img src="//25.media.tumblr.com/de356cd6570d7c26e73979467f296f67/tumblr_mrn3dc10Wa1r1thfzo6_400.jpg" class="img-responsive" alt="">
<figcaption>@gregfoster</figcaption>
</figure>
</a>

</div>
<div class="item">
<a href="http://distilleryimage10.ak.instagram.com/85c5d0e4039411e3bd9b22000aa82186_7.jpg" data-toggle="lightbox" data-gallery="global-gallery" data-parent="">
<img src="//distilleryimage10.ak.instagram.com/85c5d0e4039411e3bd9b22000aa82186_7.jpg" class="img-responsive">
</a>
</div>
<div class="item">
<a href="http://25.media.tumblr.com/de356cd6570d7c26e73979467f296f67/tumblr_mrn3dc10Wa1r1thfzo6_1280.jpg" data-gallery="global-gallery" data-parent="" data-toggle="lightbox">
<figure>
<img src="//25.media.tumblr.com/de356cd6570d7c26e73979467f296f67/tumblr_mrn3dc10Wa1r1thfzo6_400.jpg" class="img-responsive" alt="">
<figcaption>@gregfoster</figcaption>
</figure>
</a>
</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>

JS:

$(document).delegate('*[data-toggle="lightbox"]', 'click', function(event) {
event.preventDefault();
$(this).ekkoLightbox();
});

工作 fiddle :http://jsfiddle.net/52VtD/8900/

在上面的代码中,我实现了带有 Bootstrap 模态的图像 slider ,如您所见,带有上一个和下一个按钮。所以现在我的问题是,当我单击图像时,模态弹出窗口会打开一个图像,但在背景中,图像的滑动必须暂时停止,直到弹出窗口关闭..但它没有发生......所以任何人都会对此有所了解。

最佳答案

如果这个插件暴露了任何事件,我找不到任何东西,所以它是 Bootstrap 模式事件。在模态显示暂停轮播和模态隐藏重新启动它。

var carousel = $('#myCarousel');
var body = $('body');

body.on('show.bs.modal', '.ekko-lightbox', function () {
carousel.carousel('pause');
})

body.on('hide.bs.modal', '.ekko-lightbox', function () {
carousel.carousel('cycle');
})

http://jsfiddle.net/52VtD/9560/

关于javascript - 观察到在背景中最大化图像滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27420168/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com