I'd probably do it this way:
In the stylesheet: 

#divToMove {position:absolute; top:-500px} (change the -top depending on the
size of the div and where it is in your html)

Then: 

$('#divToMove').animate(
        {top: 100,},
        'slow'
);

(You may even be able to do it without the interface plugin).


dalvarado wrote:
> 
> 
> Thanks for this info.  From reading the page, there is still one thing I'm
> unsure of.  If you want your DIV to come in from left to right, (from
> off-screen to center on screen), what are the parameters that should be
> passed?
> 
> Thanks, - Dave
> 
>>  -------Original Message-------
>>  From: John Beppu <[EMAIL PROTECTED]>
>>  Subject: Re: [jQuery] Plugin to move DIVs?
>>  Sent: Mar 19 '07 18:23
>>  
>>  You're looking for the Interface plugin:
>>  
>>  [LINK: http://interface.eyecon.ro/docs/animate]
>>  http://interface.eyecon.ro/docs/animate
>>  
>>  
>>  On 3/19/07,  [LINK: MAILTO:[EMAIL PROTECTED]
>>  [EMAIL PROTECTED] <[LINK: mailto:[EMAIL PROTECTED]
>>  [EMAIL PROTECTED]> wrote: Hi,
>>  
>>  What is the most appropriate plug-in that will allow me to slide a DIV
>>  horizontally from off-screen to on-screen center?
>>  
>>  Thanks, - Dave
>>  
>>  _______________________________________________
>>  jQuery mailing list
>>  [LINK: mailto:[EMAIL PROTECTED] discuss@jquery.com
>>  [LINK: http://jquery.com/discuss/] http://jquery.com/discuss/
> 
> _______________________________________________
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Plugin-to-move-DIVs--tf3427754.html#a9561457
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to