このようなもの:
<div id="container" class="clickable clearfix">
<img class="element"onclick="
if($(this).hasClass('da'))
{$(this).animate({'height':'63','width':'182'}).removeClass('da')}
else
{$(this).animate({'height':'126','width':'364'}).addClass('da')}
"style="width:182px;height:63px;" src="http://www.google.com/images/logos/ps_logo2.png"/>
<img class="element"onclick="
if($(this).hasClass('da'))
{$(this).css({'height':'53','width':'215'}).removeClass('da')}
else
{$(this).css({'height':'106','width':'430'}).addClass('da')}
"style="width:215px;height:53px;" src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif"/>
<img class="element"onclick="
if($(this).hasClass('da'))
{$(this).animate({'height':'63','width':'182'}).removeClass('da')}
else
{$(this).animate({'height':'126','width':'364'}).addClass('da')}
"style="width:182px;height:63px;" src="http://www.google.com/images/logos/ps_logo2.png"/>
</div>
$('.element').live('click', function(){
$('#container').isotope('reLayout');
});
$('#container').isotope({
itemSelector: '.element',
masonry: { columnWidth : 1 }
});
.isotope('reLayout') を使用して画像ページを作成したい。GOOGLE のロゴは "$(this).animate" を使用し、JQUERY のロゴは "$(this).css" を使用しています。それらをクリックしてみてください。問題は、GOOGLE のロゴ the.animate が機能せず、反対側の GOOGLE をクリックし、JQUERY thes.css が正しいことです。どうすれば修正できますか?