こんにちは、
プロポーション(横/縦/正方形)に応じて、各画像にクラスを追加しようとしています。このコードは JSfiddle では機能しますが、Web サイト (ローカルまたはサーバー) では機能しません。
$(document).ready(function()
{
$('img').addClass('wide');
$.each($('img'), function()
{
var image = $(this);
if (image.height() > image.width()) {
image.removeClass('wide');
image.addClass('tall');
} else if (image.height == image.width()) {
image.removeClass('wide');
image.addClass('square');
}
});
});
ここに私の JSfiddle があります: http://jsfiddle.net/LYxv6/。