3

嘿社区我正在做这个框架中的图片居中所以图像的中心在框架的中心,尽管它的大小。(框架是固定的)

 $('.item-box').each(function () {
    var fwidth = $('.gmask').width();
    var iwidth = $('.gmask img').width();
    var fheight = $('.gmask').height();
    var iheight = $('.gmask img').height();

    $('.gmask img').css('margin-left', Math.floor((fwidth - iwidth) / 2) - 3);
    $('.gmask img').css('margin-top', Math.floor((fheight - iheight) / 2) - 3);
});

我想为我的每个'.item-box'做一个循环,谁能告诉我我做错了什么

*编辑

顺便说一句,我在做 jquery 模板

<script id="resultTemplate" type="text/x-jquery-tmpl "> 
    {{for Product}}

    <div class="item-box" id="{{if #index < 5 }}itemboxTeaser{{else}}itemboxRest{{/if}}{{:#index+1}}">
        <div class="visual-gallery">
            <div class="gmask">
                <ul class="replaceClass">
                    <a href="/lejemaal/{{:Urlname}}/#/Lejemaal">
                        <img src="{{:PhysicalPathToFrontPhotoUseWebFront300Px}}" alt="">
                    </a>
                </ul>
            </div>
        </div>
     </div>
     {{/for}}
</script>
4

4 回答 4

4

我想.gmask它的亲戚img$(this)(你的.item-box)的孩子
试试:

$('.item-box').each(function () {
        var $gmask = $(this).find('.gmask');
        var $gmaskImg = $gmask.find('img');

        var fwidth = $gmask.width();
        var iwidth = $gmaskImg.width();
        var fheight = $gmask.height();
        var iheight = $gmaskImg.height();

        $gmaskImg.css('margin-left', Math.floor((fwidth - iwidth) / 2) - 3);
        $gmaskImg.css('margin-top', Math.floor((fheight - iheight) / 2) - 3);
});

阅读 OP 评论后编辑

$(window).load(function(){
    $('.item-box').find('.gmask').each(function () {
            var $gmask = $(this);
            var $gmaskImg = $gmask.find('img');

            var fwidth = $gmask.width();
            var iwidth = $gmaskImg.width();
            var fheight = $gmask.height();
            var iheight = $gmaskImg.height();

            $gmaskImg.css('margin-left', Math.floor((fwidth - iwidth) / 2) - 3);
            $gmaskImg.css('margin-top', Math.floor((fheight - iheight) / 2) - 3);
    });
});
于 2012-08-30T12:24:55.090 回答
0

我猜你想在每个 .item-box 中居中图像,所以你需要参考 'this' :

 $('.item-box').each(function () {
    var fwidth = $(this).find('.gmask').width();
    var iwidth = $(this).find('.gmask img').width();
    var fheight = $(this).find('.gmask').height();
    var iheight = $(this).find('.gmask img').height();

    $(this).find('.gmask img').css('margin-left', Math.floor((fwidth - iwidth) / 2) - 3);
    $(this).find('.gmask img').css('margin-top', Math.floor((fheight - iheight) / 2) - 3);
});
于 2012-08-30T12:25:05.853 回答
0

无论当前的 .item-box 是什么,这些行都占用了页面的第一个元素:

var fwidth = $('.gmask').width();
var iwidth = $('.gmask img').width();
var fheight = $('.gmask').height();
var iheight = $('.gmask img').height();

你需要做$(this).find('.element');

于 2012-08-30T12:26:15.307 回答
0

既然 img 是你所追求的,为什么不对.each这些元素进行循环呢?

$('.item-box .gmask img').each(function ()
{
    var parent, fwidth,fheight,iwidth,iheight;
    parent = $(this);
    while(!parent.attr('class').match(/\bgmask\b/))
    {//get the .gmask parent of current img
        parent = parent.parent();
    }
    iwidth = $(this).width();
    iheight = $(this).height;
    fwidth = parent.width();
    fheight = parent.height();
    $(this).css('margin-left', Math.floor((fwidth - iwidth) / 2) - 3);
    $(this).css('margin-top', Math.floor((fheight - iheight) / 2) - 3);
});

这减少了使用的选择器的数量,从而提高了整体性能。恕我直言,它也更容易阅读和维护。

于 2012-08-30T12:35:03.710 回答