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
Post a Comment