アニメーションでフラッシュ オブジェクトのサイズを変更しようとしています (最終的には最初に移動しますが、最初に移動します) が、まったく機能していないようです。
Jquery で css プロパティのみを変更している場合は機能します。
動かないアニメーション:
$('#greenbtn').hover(function(){
$(this).animate({width: '242px', height: '63px'}, 'fast', 'easeOutSine');
console.log('here1');
});
$('#greenbtn').mouseleave(function(){
$(this).animate({width: '228px', height: '57px'}, 'fast', 'easeOutSine');
console.log('here2');
});
働く:
$('div.leftB').hover(function(){
$('#greenbtn').css({width: '242px', height: '63px'});
});
$('div.leftB').mouseleave(function(){
$('#greenbtn').css({width: '228px', height: '57px'});
});
.animate() がフラッシュでまったく動作しないのですか、それとも私のコードに何か問題がありますか?
ご協力いただきありがとうございます!