ファンシーボックスヘルパーを実行できません。具体的には、別のスクリプトで右クリックなしボタンを実行できません。つまり、ファンシーボックスにいいえを表示させることができません。画像の。スクリプトはこのように実行されます。
<script type="text/javascript">
$(document).ready(function() {
$('.fancybox').fancybox({
prevEffect : 'fade',
nextEffect : 'fade',
afterLoad : function() {
this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
},
helpers: {
title: {
type: 'inside'
},
thumbs: {
width : 50,
height : 50
}
}
});
});
$(".fancybox")
.attr('rel', 'images')
.fancybox({
beforeShow: function () {
/* Disable right click */
$.fancybox.wrap.bind("contextmenu", function (e) {
return false;
});
}
});
</script>
このスクリプトを実行すると、いいえ。の画像が表示され、右クリックが機能しません。お知らせ下さい。