使用Blueimg Gallery我想了解如何始终显示图库控件(.blueimp-gallery-controls
),而不是在点击图库中的img class=".slide-content"
时显示和隐藏它们。
看看blueimp-gallery.min.js(我用Online JavaScript beautifier美化了)我发现了几个点击处理程序,同时也指示了图库控件的切换功能。
toggleControls: function() {
var a = this.options.controlsClass;
this.container.hasClass(a) ? this.container.removeClass(a) : this.container.addClass(a)
},
在我看来,简单地评论这4行给了我想要的行为。但是我真的不想改变原来的剧本。
这样做也会在脚本的这一部分内的最后(Uncaught TypeError: undefined is not a function
)抛出this.toggleControls()
错误。
f(c.toggleClass) ? (this.preventDefault(b), this.toggleControls()) : f(c.prevClass) ? (this.preventDefault(b), this.prev()) : f(c.nextClass) ? (this.preventDefault(b), this.next()) : f(c.closeClass) ? (this.preventDefault(b), this.close()) : f(c.playPauseClass) ? (this.preventDefault(b), this.toggleSlideshow()) : e === this.slidesContainer[0] ? (this.preventDefault(b), c.closeOnSlideClick ? this.close() : this.toggleControls()) : e.parentNode && e.parentNode === this.slidesContainer[0] && (this.preventDefault(b), this.toggleControls())
从脚本中该行的末尾删除, this.toggleControls()
可以消除该错误,但是我认为所有这些都不是正确的方法。
是否有办法在用户添加的脚本中覆盖此脚本中的命令,类似于CSS中的!important
规则?像这样,当Blueimp Gallery有更新时,我可以保留源代码并上传最新版本。
也许作者Sebastian Tschan如果没有被问到太多,也许可以联系一下?
非常感谢任何帮助:)
答案 0 :(得分:18)
将类blueimp-gallery-controls
添加到blueimp-gallery
div会使控件从开始+切换功能可见仍然有效
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
希望有所帮助。
答案 1 :(得分:5)
为了显示控件,您必须将blueimp-gallery-controls类添加到图库容器中。
您的容器将如下所示
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<a class="play-pause"></a>
<ol class="indicator"></ol>
</div>
然后,您可以通过覆盖默认选项来取消绑定点击处理程序。在初始化图库之前覆盖选项非常重要。
<script>
blueimp.Gallery.prototype.options.toggleControlsOnReturn = false;
blueimp.Gallery.prototype.options.toggleControlsOnSlideClick = false;
</script>
答案 2 :(得分:3)
我不确定这个好主意还是坏主意。这似乎是最简单,最直接的途径。
.blueimp-gallery > .prev,
.blueimp-gallery > .next,
.blueimp-gallery > .close,
.blueimp-gallery > .title,
.blueimp-gallery > .play-pause {
display: block;
}
我将Blueimp CSS添加到我的SASS工作流程中,只是将控制按钮的显示属性更改为block
。我没有取消连接切换库控件类的单击处理程序,因此仍会触发。
答案 3 :(得分:1)
要停止对图片的点击,您可以将toggleControlsOnSlideClick
设置为false
示例:
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<a class="play-pause"></a>
<ol class="indicator"></ol>
</div>
<script>
document.getElementById('links').onclick = function (event) {
event = event || window.event;
var target = event.target || event.srcElement,
link = target.src ? target.parentNode : target,
options = {index: link, event: event, toggleControlsOnSlideClick: false},
links = this.getElementsByTagName('a');
blueimp.Gallery(links, options);
};
</script>