純粋な html と css で css スプライトを使用する方法を知っています。しかし、JavaScript を使用してドロップダウン ボックスから値を選択することで、動的に画像を変更するとどうなるでしょうか。
<select name="pricing" onchange="check_pricing();" id="pricing_value">
<option value="">[Please Select]</option>
<option value="Free" <?php if($pricing == 'Free'): ?> selected="selected"<?php endif; ?>>Free</option>
<option value="Paid" <?php if($pricing == 'Paid'): ?> selected="selected"<?php endif; ?>>Paid</option>
</select>
function check_pricing() {
var pricing = document.forms["MyForm"]["pricing_value"].value;
if (pricing == 'Paid')
{
document.getElementById('table_drawad').style.backgroundImage="url('Images/drawad_bg_paid.png')";
}
else
{
document.getElementById('table_drawad').style.backgroundImage="url('Images/drawad_bg_free.png')";
}
}
css を使用すると、次のようになります。
table.table_drawad{
width:120px;
height:123px;
background-image:url('Images/newcampaign_sprite2.png');
background-position:0px 0px;
}