3

これが私の例です

HTML:

<div class="container">
    <img src="http://placehold.it/500x500" alt="500x500" />
</div>
<div class="container">
    <img src="http://placehold.it/100x500" alt="100x500" />
</div>
<div class="container">
    <img src="http://placehold.it/500x100" alt="500x100" />
</div>
<div class="container">
    <img src="http://placehold.it/500x800" alt="500x800" />
</div>
<div class="container">
    <img src="http://placehold.it/800x500" alt="800x500" />
</div>
<div class="container">
    <img src="http://placehold.it/100x100" alt="100x100" />
</div>
<div class="container">
    <img src="http://placehold.it/200x100" alt="200x100" />
</div>​

CSS:

div.container { width: 200px; height: 200px; line-height: 200px; overflow: hidden; border: 10px solid white; box-shadow: 0 1px 8px #BBB; margin: 10px; text-align: center; }
            div.container img { position: relative; vertical-align:middle; }
            div.container img.wide { max-height: 100%; }
            div.container img.tall { max-width: 100%; }
            div.container img.square { max-width: 100%; }​

Javascript:

$(window).load( function(){
var $imgs = $("div.container img");

$imgs.each( function(){
    var cW = $(this).parent().width();
    var cH = $(this).parent().height();
    var w = $(this).width(); //I want the CURRENT width, not original!!
    var h = $(this).height(); //I want the CURRENT height, not original!!
    var dW = w - cW;
    var dH = h - cH;

    console.log( cW + " " + cH + " " + w + " " + h + " " + dW + " " + dH );

    if ( w > h ){ 
        $(this).addClass("wide");
        $(this).css("left",  -dW/2);
    }
    else if ( w < h ){
        $(this).addClass("tall");
        $(this).css("top",  -dH/2);
    }
    else { $(this).addClass("square"); }                    
});
});​

javascript を使用して、プロポーションに基づいて画像要素にクラスを追加しています。3 つのクラスは、画像の max-width および max-height css プロパティを設定し、サイズを変更します。その後、サイズ変更された画像の寸法が必要ですが、取得できるのは元の画像の寸法だけです。それは良くないね!width()outerWidth、 、あらゆる種類の幅を使用してみnaturalWidthましたが、うまくいきません。

では、CSS ルールが適用された後に画像の寸法を取得する方法はありmax-widthますmax-heightか? タイマーや間隔などを使用しない、一貫した方法が望ましいです。

どうもありがとう!

4

1 に答える 1

5

このjsfiddleをチェックしてください。適用後ではなくmax-height/を使用してクラスを適用する前に、幅/高さを取得しようとしています。max-width

テストコードは次のとおりです(2番目のconsole.logを確認してください):

$(window).load( function(){
    var $imgs = $("div.container img");

    $imgs.each( function(){
        var cW = $(this).parent().width();
        var cH = $(this).parent().height();
        var w = $(this)[0].clientWidth; //I want the CURRENT width, not original!!
        var h = $(this)[0].clientHeight; //I want the CURRENT height, not original!!
        var dW = w - cW;
        var dH = h - cH;

        console.log( cW + " " + cH + " " + w + " " + h + " " + dW + " " + dH );

        if ( w > h ){ 
            $(this).addClass("wide");
            $(this).css("left",  -dW/2);
        }
        else if ( w < h ){
            $(this).addClass("tall");
            $(this).css("top",  -dH/2);
        }
        else { $(this).addClass("square"); }     
        var w = $(this).width(); //I want the CURRENT width, not original!!
        var h = $(this).height(); //I want the CURRENT height, not original!!
        console.log( w + " " + h );

    });
});​

width(), outerWidth- これは常に現在の幅を返します。

naturalWidth/ naturalHeight- これは、スタイルが適用されていない、イメージの幅/高さなどのオリジナルを取得するためのものです (新しいブラウザーでのみ IMG タグで使用可能)

于 2012-10-30T11:41:01.960 に答える