Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Loop Slider – Fade In, Fade Out Effect

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #36067
    therockstar
    Participant

    hi everyone
    i need your help again
    i am working on Loop Slider and couldn’t find any function which allows me to do Fade In, Fade Out Effect when i click Left and Right Function. Here is the JS file http://ge.tt/8PgElCC Please help me its urgent.
    Thanks in Advance

    #94444
    jamygolden
    Member

    Are you saying you want a slider that fades?

    #94450
    therockstar
    Participant

    hi @jamy_za i am already using Loop Slider .JS link here http://ge.tt/8PgElCC i want fade in and out function. if you have something better and easy to setup share with me Thanks.

    #94451
    therockstar
    Participant

    you can see the preview of slider here http://uat1.ascentis.com.sg/FraserWebPortal/portal/ if you click left and right arrow its just slide in and out and i want Fade in and out function like if you click on pagination bottom of slider.

    #94452
    jamygolden
    Member

    Ok, look in loopslider.js: You’ll find:

    					$(".next",$t).click(function(){
    if(active===false) {
    animate("next",true);
    if(o.autoStart){
    if (o.restart) {autoStart();}
    else {clearInterval(sliderIntervalID);}
    }
    } return false;
    });

    $(".previous",$t).click(function(){
    if(active===false) {
    animate("prev",true);
    if(o.autoStart){
    if (o.restart) {autoStart();}
    else {clearInterval(sliderIntervalID);}
    }
    } return false;
    });

    Change animate(“next”,true) and animate(“prev”,true) to: animate(“fade”,true);

    Quite lame that you have to actually edit the plugin itself – I’d recommend using something like PlusSlider or AnythingSlider in future. Especially since the developers of those plugins are active on these forums.

    #94680
    therockstar
    Participant

    Thank you so much @Jamy_za next time will use PlusSlider or AnythingSlider =) have a wonderful day

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.