我使用jquery創建了一個圖像節點,並希望在原始圖像上顯示它爲更大的版本。
複製的圖像未顯示在Chrome和Safari中,但適用於Internet Explorer和Firefox。控制檯不報告錯誤。檢查員顯示具有所有正確CSS屬性的克隆圖像元素,但給元素一個0 x 0像素大小。添加jquery的圖像沒有在webkit瀏覽器中顯示
我沒有看到任何css規則會暗示爲0x0大小。
這裏是截圖說明情況 (http://i.stack.imgur.com/AhiPf.png)
這裏是一個鏈接到演示的行爲,嘗試一下與Firefox和Chrome在圖像上: download.toastlab.ch/segtest
編輯:
創建元素的Javascript代碼:
$('.streamcontent').on('click', 'img.clickable', function() {
var img = new Image();
img.src = $(this).attr('src');
var w = img.width,
h = img.height;
img = $(img).addClass('bigger');
var tw = $(this).width();
var th = $(this).height();
var pos = $(this).position();
var center = {
top: pos.top + th/2,
left: pos.left + tw/2
};
img.css({
position: 'absolute',
top: pos.top,
left: pos.left,
width: tw,
height: th,
opacity: 0
}).animate({
top: center.top - h/2,
left: center.left - w/2,
height: h,
width: w,
opacity: 1
}, 300, function() {
$('body').one('click', function() {
img.animate({
top: pos.top,
left: pos.left,
width: tw,
height: th,
opacity: 0
}, function() {
img.remove();
});
});
});
$(this).parent().append(img);
});
你可以發佈你的JS代碼嗎? – Albinoswordfish
在Chrome 21.0和IE 10.0.84中,頁面看起來一樣(圖片顯示正常)。 – MaxPRafferty
這很奇怪,我得到了'Chrome 21.0.1180.83 m':/ – Roman