添加图像叠加层的问题(jQuery)

时间:2009-05-05 15:21:18

标签: javascript jquery image overlay

我想要做的是查找具有特定类名的所有图像,并在其上放置叠加图像。到目前为止我的脚本在jQuery 1.2.6中:

jQuery.noConflict();
jQuery(document).ready( function($) {
  var module = $(".module-contactus div div div");
  module.find("img.let").each( function() {
    var iWidth = $(this).width();
    var iHeight = $(this).height();
    var letimg = $('<img src="/LET.png" style="position: absolute; top: 50%; left: 50%; margin-top: -' + Math.ceil(iHeight/2) + 'px; margin-left: -' + Math.ceil(iWidth/2) + 'px;" />');
    var wrapper = $( '<span style="position: relative; display: inline-block;"></span>' );
    $(this).wrap( wrapper );
    letimg.appendTo( wrapper );
  });
});

letimg未添加到文档中(根据Firebug)。 span元素成功包装了原始图像。此外,如果我将$(this)传递到appendTo函数,它会有用,但它会添加到原始图像中!

编辑:标记在下方。 (额外的div是Joomla的结果。)

<div class="module-contactus">
<div><div><div>

<img src="/contact1.jpg" />
<img class="let" src="/contact2.jpg" />

</div></div></div>
</div>

运行脚本后,第二个图像将替换为:

<span style="position: relative; display: inline-block;">
<img class="let" src="/contact2.jpg" />
</span>

然而,它最终应该是这样的:

<span style="position: relative; display: inline-block;">
<img class="let" src="/contact2.jpg" />
<img src="/LET.png" style="..." />
</span>

2 个答案:

答案 0 :(得分:6)

这对我有用:

jQuery.noConflict();
jQuery(function($) {
    $("img.let", $(".module-contactus div div div")).each(function() {
        var iWidth = $(this).width();
        var iHeight = $(this).height();
        var letimg = '<img src="http://www.roomsinworcester.co.uk/images/stories/LET.png" style="position: absolute; top: 50%; left: 50%; margin-top: -' + Math.ceil(iHeight/2) + 'px; margin-left: -' + Math.ceil(iWidth/2) + 'px;" />';
        var wrapper = $('<span style="position: relative; display: inline-block;"></span>');
        $(this).wrap(wrapper).after(letimg);
    });
});

作为旁注。我拿出了你的几个变量,并说你可能会继续删除其他变量(将img标签直接放入after,将包装器直接放入wrap函数等)。不管怎么说,这不是什么大不了的事。

答案 1 :(得分:0)

我不确定你是否需要包装器。

尝试这样的事情。

jQuery(document).ready( function($) {
    var module = $(".module-contactus div div div");
    module.find("img.let").each( function() {                
        var iWidth = $(this).width();                
        var iHeight = $(this).height();                
        var letimg = $('<img src="http://www.roomsinworcester.co.uk/images/stories/LET.png" style="position: absolute; top: 50%; left: 50%; margin-top: -' + Math.ceil(iHeight/2) + 'px; margin-left: -' + Math.ceil(iWidth/2) + 'px;" />');                
        $(this).before(letimg);         
        alert(module.html());
    });
  });