このサンプルページに示すように、ロールアップおよびロールダウンするための2つのJSボタンがあり ます。
これで、効果なしで画像を変更するだけです。スライドまたはロール効果を適用して、画像が循環しているように見せるために、このように上下に移動する必要があります。
JSコードはASP.netページから動的に生成されます。これが上ボタンのJSです。
var my_slots = ['_', 'x', 'y', 'z', '0', '1',
'2', '3', '4', '5', '6', '7', '8', '9'];
$("#sslot_img0_u").live('click', function() {
image = document.getElementById('sslot_img' + '0');
image.setAttribute('src', do_up('0', image.getAttribute('alt')));
$("#hstring").val(my_slots[2]);
return false;
});
function do_up(key1, key2) {
image = document.getElementById('sslot_img' + key1);
if (Number(key2) == my_slots.length - 1) {
image.setAttribute('alt', '0');
$get('sslot_hf' + key1).value = my_slots[0];
return "http://www.fedne.com/" + my_slots[0] + '.gif';
} else {
image.setAttribute('alt', (Number(key2) + 1));
$get('sslot_hf' + key1).value = my_slots[Number(key2) + 1];
return "http://www.fedne.com/" + my_slots[Number(key2) + 1] + '.gif';
}
}
divクリックイベントではなくボタンにこの効果を与えることは可能ですか?