質問

I have a date picker using jquery. However I want to add the 'bounce' animation to it. Please help me adding this animation to the date picker. My code as of now is:

$(function() {
    $("#datepicker").datepicker({ dateFormat: "DD, d MM, yy" });
});
役に立ちましたか?

解決

Is this what you are trying to accomplish?

$(function() {
    $("#datepicker").datepicker({ showAnim: "bounce", dateFormat: "DD, d MM, yy" });
});

http://jsfiddle.net/damyanpetev/VS2hV/

Additionally you can set duration and additional options that correspond to the effect you are using (in this case 'bounce' .

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top