我想開發一些代碼,其中一個jQuery需要圖像和調整大小,以適應父div,與一個選項點擊圖像查看全尺寸fancybox。我試圖用類「展開」來完成所有圖像,並且不要期望每頁上的圖像具有更多的圖像。使用fancybox來查看完整大小的圖像
以下是我到目前爲止所提出的。圖片大小調整得很好,我可以點擊圖片來調出fancybox,但它的大小已經調整,而不是原來的大小。我有fwidth和fheight作爲原始尺寸的變量,但指定它們不起作用,因爲它是內聯的。所以,我需要使用一個我已經想出來的iframe,並試圖圍繞它鏈接一個鏈接,並將該鏈接指定爲具有指定尺寸的iframe,併爲鏈接抓取.attr(「src」)。但無論我做什麼,它都會進入fancybox的404頁面。下面是我所擁有的,不知道如何繼續,或者我是否以錯誤的方式思考這個問題?
if($('img.expand').length){
var parentClass = $('img.expand').parent().attr("class");
var fwidth = $('img.expand').attr("width");
var fheight = $('img.expand').attr("height");
if($('img.expand').parents().is('.grid_10')){
$('img.expand').each(function() {
var maxwidth = 590;
var obj = $('img.expand');
var width = obj.width();
var height = obj.height();
if (width > maxwidth) {
//Set variables for manipulation
var ratio = (height/width);
var new_width = maxwidth;
var new_height = (new_width * ratio);
//Shrink the image and add link to full-sized image
obj.height(new_height).width(new_width);
}
});
}
$('img.expand').fancybox({
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'speedIn' : 600,
'speedOut' : 200,
'overlayShow' : false,
'titlePosition' : 'inside'
});
}