How can you change effect in Nivo Slider based off of previous or next slide keypress?

前端 未结 3 1517
星月不相逢
星月不相逢 2021-01-07 13:10

I want to change the transition effect on Nivo Slider based off of which button was pressed. Any ideas of how to accomplish this?

Update To clarify

3条回答
  •  礼貌的吻别
    2021-01-07 13:49

    $('.nivo-prevNav').live('mouseover', function(){
         $('#slider img').attr("data-transition","sliceUpDown");
    });
    
    $('.nivo-nextNav').live('mouseover', function(){
         $('#slider img').attr("data-transition","sliceUpDownLeft");
    });
    

提交回复
热议问题