slideToggle JQuery right to left

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

    You can try this:

    $('.show_hide').click(function () {
        $(".slidingDiv").toggle("'slide', {direction: 'right' }, 1000");
    });
    
    

提交回复
热议问题