slideToggle JQuery right to left

后端 未结 9 694
再見小時候
再見小時候 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:22

    You can do this using additional effects as a part of jQuery-ui

    $('.show_hide').click(function () {
        $(".slidingDiv").toggle("slide");
    });
    

    Test Link

提交回复
热议问题