slideToggle JQuery right to left

后端 未结 9 710
再見小時候
再見小時候 2021-02-01 05:04

i\'m new in JQ i have this script i found on the internet and its do exactly what i need but i want the sliding will be from the right to the left how can i do it? please help

9条回答
  •  死守一世寂寞
    2021-02-01 05:33

    Try this:

    $(this).hide("slide", { direction: "left" }, 1000);
    

    $(this).show("slide", { direction: "left" }, 1000);

提交回复
热议问题