Fancybox 2 に問題があります。Fancybox がギャラリー モードのときに、Fancybox をフォーカス (キーボードのエンター キー) で閉じると、2 番目の画像に移動します。Fancybox をキーボード (ESC を除く) で閉じることができません。マウスでしか機能しません。
ここでこれをテストできますhttp://jsfiddle.net/korigan/qfxZd/2/
$('.fancybox').click(function(){
focusLink = this;
}).fancybox({
beforeLoad: function() {
$('a, input, button').attr('tabIndex', -1);
$('.fancybox-overlay a, .fancybox-overlay button, .fancybox-overlayinput').attr('tabIndex', 0);
},
afterClose: function() {
focusLink.focus();
$('a, button, input').attr('tabIndex', 0);
},
});
ご協力いただきありがとうございます。