views:

677

answers:

1

Please very urgent -------

do you have Flash or flex or jquery header animation like this url site http://www.zhoyosoft.com?

is it possiable can do in jquery and also flex ? anybody help me

+1  A: 

Here are two options:

With jQuery, you can use: http://plugins.jquery.com/project/carousel3d

In which case you'll want to use either the 'continuously rotating' option or you'll want to create your own event queue and change the angle used to rotate the carousel manually (you'll have to dig into the code and do some math for that though):

 jQuery(function($) {
3 $("#carousel").html($("#holder_images").html()).carousel3d({ control: 'continuous', speed: 1, centerX: $('#carousel').offset().left + $('#carousel').width()/2 });
4 });

In flash you can probably use the "Click and Zoom 3D Carousel" at gotoandlearn.com The files at that website should give you a fairly good head start.

btelles
it is very useful to me . thanks btelles