我試圖在動畫中調整flash對象的大小(並最終移動它,但首先是第一件事),但它似乎並不工作。jquery動畫Flash對象
如果我只更改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()根本不在flash上工作,或者是我的代碼有問題?
感謝您的幫助!
你使用的是其他因素,如你的動作示例的觸發? – 2012-07-15 08:40:58
這是#greenbtn父母 – 2012-07-15 09:06:49
你有沒有試過觸發動畫選擇器?像'$('#greenbtn')。animate(...)'? – 2012-07-15 09:15:43