0
demo:這是從右到左動畫的動畫。但我需要使用從左到右這個動畫。如何從左至右進行動畫製作?
基本上,我使用這個腳本:
var counter = 1;
var thisw = $('.btn.close').parent().outerWidth();
var thish = $('.btn.close').parent().outerHeight();
$('.btn.close').on('click',function(){
counter = !counter;
if(counter){
$(this).parent().animate({width: '5em', height: '2em'},1000);
} else{
$(this).parent().animate({width: thisw, height: thish}, 1000);
}
}).click();//click trigger is added because on first click it doesn't animate
//the reason is it is not getting actual width and height value as it is set in em but with jquery we get px value.
我甚至覺得我的腳本可以寫成比這有點像使用三元操作更好。但我在此堆積。
問:
- 那麼,有什麼更好的方式來寫上面的代碼的jQuery的?
- 是否可以在不使用絕對位置的情況下從左至右進行動畫製作?