該函數返回到放大圖像,點擊上時,縮略圖視圖....事件按鍵時
$('#wrapper > img').live('click',function(){
$this = $(this);
$('#description').empty().hide();
$('#thumbsWrapper').css('z-index','10')
.stop()
.animate({'height':'100%'},speed,function(){
var $theWrapper = $(this);
$('#panel').css('height','0px');
$theWrapper.css('z-index','0');
/*
remove the large image element
and the navigation buttons
*/
$this.remove();
$('#prev').hide();
$('#next').hide();
});
});
...點擊之外,我想這也接近上按鍵或只是「Esc鍵」如果可能的話?
非常感謝