Jquery box animation change

jeavader

New Member
i try to make a box animation...its working okay..just i wanna change a green box animation to left.. sorry for my poor englishCode\[code\]jQuery(document).ready(function() {$(".iphone").mouseover(function(){ $('#appstore').stop().animate({width:'276px'},{queue:false, duration:600,}) }); $(".iphone").mouseout(function(){ $('#appstore').stop().animate({width:'128px'},{queue:false, duration:600,}) }); }); $(".android").mouseover(function(){ $('#play').stop().animate({width:'276px'},{queue:false, duration:600,}) }); $(".android").mouseout(function(){ $('#play').stop().animate({width:'128px'},{queue:false, duration:600,}) }); \[/code\]DEMO thanks ;)
 
Back
Top