使用javascrip禁用lightbox
我有一个图像,当被点击时,将在lightbox中打开(来自http://lokeshdhakar.com/projects/lightbox2/的脚本),我想要做的是禁止在按钮切换到关闭时发生这种情况。(因此,单击图像不起任何作用。)
我曾尝试使用.off和.un绑定来禁用lightbox,但它们都不适用于我。 我也按照建议跟踪了How do I dynamically enable/disable links with jQuery?,但没有运气。
下面是HTML。
<div style="margin-left:10%;padding:1px 16px;">
<section id="four_columns">
<article class="img-item">
<figure>
<a href="img/livingroom.jpg" data-lightbox="livingroom"><img id="img_window1" src="img/livingroom.jpg" width="200" height="120"></a>
<figcaption>
<strong>Living Room
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="window1" value="window1" checked>
<label class="onoffswitch-label" for="window1">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</strong>
</figcaption>
</figure>
</article>
...
和Java脚本
<script type="text/javascript">
$(document).ready(function() {
var full_opacity = 1;
var faded_opacity = 0.3;
var fade_speed = 'fast';
var objid;
$('input[name="onoffswitch"]').each(function() {
objid = "#img_" + $(this).val();
if($(this).prop('checked')) {
$(objid).css('opacity', full_opacity);
}
else {
$(objid).css('opacity', faded_opacity);
}
});
$('input[name="onoffswitch"]').change(function() {
var objid = "#img_" + $(this).val();
console.log($(this).prop('checked'));
if($(this).prop('checked')) {
$(objid).fadeTo(fade_speed, full_opacity);
}
else {
$(objid).fadeTo(fade_speed, faded_opacity);
$(objid).parent().unbind('click'); /* Here is where I want to implement the code. */
}
});
});
</script>
如有任何帮助,我们将不胜感激。
解决方案
您需要禁用lightbox(通过移除其查找的data-lightbox
属性)和基础超链接的默认功能。
$lightboxes = $(".myImageLinks");
// save the old data attributes in an array, then remove them
var lightboxData = $lightboxes.map(function() {
return $(this).data("lightbox");
}).get();
$(objid).parent().removeAttr("data-lightbox");
// prevent the browser from traveling to the link target
var preventer = function(e) {
e.preventDefault();
});
$(objid).parent().click(preventer);
然后使用以下命令重新启用默认点击功能:
$(objid).parent().unbind('click', preventer);
$lightboxes.attr("data-lightbox", function(i, old) {
return lightboxData[i];
});
禁用lightbox的另一个选项是删除"data-lightbox"属性,并将其临时保存为"data-oldlightbox"属性。
我觉得这个库应该使用一个类来标识哪些元素符合LightBox的条件。这对用户来说很重要,而不仅仅是对库,而且应该在语义上进行标记。数据属性不适用于CSS挂钩。
相关文章