gpt4 book ai didi

javascript - elevateZoom 上的 BSCarousel 错误

转载 作者:行者123 更新时间:2023-11-28 00:01:52 24 4
gpt4 key购买 nike

我开发了一个 Bootstrap 轮播,里面有一个 elevateZoom 镜头。问题是,当鼠标离开图像时,镜头不会消失,直到鼠标也离开镜头。在 example shown in official elevateZoom web这种情况不会发生(鼠标离开图像后镜头就会消失)。

这是我的代码:

<div id="planos" class="carousel slide" style="border-top:1px solid #FCF3E8; top:-1px" data-interval="false">
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox" ng-app="planos-module" ng-controller="planos-controller">
<div ng-repeat="i in getNumber(number) track by $index" class="item" id="plano{{$index+1}}">
<img ng-src="img/planos/{{$index+1}}.jpg" alt="Plano {{$index+1}}" data-zoom-image="img/planos/{{$index+1}}.jpg" />
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control carousel-control-2" href="#planos" role="button" data-slide="prev">
<span class="fa fa-angle-left fa-3x" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control carousel-control-2" href="#planos" role="button" data-slide="next">
<span class="fa fa-angle-right fa-3x" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>

以及相关的 javascript:

$(document).ready(function(){
//some code
$('#plano1').addClass('active');
$('#planos .item img').each(function(){
$(this).elevateZoom({
zoomType : "lens",
lensShape : "round",
lensSize : 350
});
});
//some more code
});

我做错了什么?

非常感谢

编辑:Here is the JSFiddle 。我无法将其完全复制为我的网络,但同样的问题正在发生。另外,我无法导入 elevateZoom js 文件,所以我只是将其内容复制粘贴到 js fiddle 中(如果您在 JS 部分向下滚动,您可以看到我的代码)

编辑2:解决了!答案如下。

最佳答案

解决了!

这是答案,以防其他人遇到同样的问题。

我只需在 elevateZoom 初始化中添加 containLensZoom: true 选项即可。

$(document).ready(function(){
//some code
$('#plano1').addClass('active');
$('#planos .item img').each(function(){
$(this).elevateZoom({
zoomType : "lens",
lensShape : "round",
lensSize : 350,
containLensZoom : true
});
});
//some more code
});

关于javascript - elevateZoom 上的 BSCarousel 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31728017/

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