Slide bgcolor="#FFFFFF">

slide.lib
(Requires kernel.lib)

Slide: The slide function moves a DIV along a straight line to a coordinate on the screen. The slide function has several variable fields. The first two are the x and y coordinates. These fields will also accept arrays that contain a set of points which the DIV will be moved to. The next field is the increment. This indicates how many pixels the DIV will move each time it is repositioned. The delay field indicates how many milliseconds the function will wait between repositioning the DIV. The maximum speed for the delay is around 30ms for current browsers. The final field contains the commands the function will run after it has moved the DIV. Increment and delay will also accept arrays.

div("name").slide(x,y,increment,delay,"commands");
div("name").slide(x[],y[],increment[],delay[],"commands");

Slide stop: This command will stop the current DIV while it is moving.

div("name").slideStop()

Slide stop: This command will resume the current slide().

div("name").slideResume()