jQuery Point A to Point B Slide effect -


i looking jquery plugin, or if can other means, thats welcome also, anyways heres need do.

on website fsp.dbztech.com

i need red arrow move point (where now) point b, down little. on mouse over.

so kinda hinting @ proceed down kind of thing. if have other questions because isn't enough information, let me know.

using jquery.ui, assuming non-static (e.g. absolute) positioning of arrow, move arrow down 400 pixels when hover on it:

$(function() {     $(".arrow").hover(function() {         $(this).animate({ top: "400px" });     }); }) 

replacing "400px" "+=40px" make arrow move 40 pixels below it's original position.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -