次のようなコンテナにラップされた画像がいくつかあります。
<div id="swatchcontainer">
<div class="swatchimgouter">
<div class="swatchimginner">
<img src="whatever1.jpg" alt="some text" title="some text too"/>
</div>
</div>
<div class="swatchimgouter">
<div class="swatchimginner swatchdisabled">
<img src="whatever2.jpg" alt="some text" title="some text too"/>
</div>
</div>
<div class="swatchimgouter">
<div class="swatchimginner">
<img src="whatever3.jpg" alt="some text" title="some text too"/>
</div>
</div>
etc., etc.
</div>
ミッションクリティカルではありませんが、JQueryを使用してこれらの画像をかなり簡単に並べ替えることはおそらく可能だと思いました。最後に「swatchdisabled」クラスにラップされているすべての画像を配置したいと思います。
これらの画像は数十個ある可能性があります。それらはすべてでスタイリングされfloat:left
ているため、水平方向に行で表示されます。数十個あるとしても、2行しかない。これらの各画像は30ピクセル×30ピクセルです。
これはUIに関する考慮事項にすぎません。無効になっているすべての画像を最後に配置することで、無効になっているアイテムと有効になっているアイテムを追跡しやすくなります。
これを行うのがかなり簡単な場合は、内部のdivクラスも一緒に保持する必要があります。