How can I change my jQuery slider?
I'm using a slide like the one on this link. I would like to change the fun开发者_JAVA技巧ction from sliding to dropping. Any insights?
http://unlimited.ndot.in/
I have seen the code
$("div").click(function () {
$(this).hide("slide", { direction: "down" }, 1000);
});
in the slider plugin documentation.
Good luck.
精彩评论