Skip to content

Instantly share code, notes, and snippets.

@derred
Forked from ajmalafif/flexslider.md
Created January 22, 2013 10:34

Revisions

  1. @ajmalafif ajmalafif revised this gist Jan 20, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion note.md
    Original file line number Diff line number Diff line change
    @@ -4,5 +4,5 @@ More on it [here:http://stackoverflow.com/questions/9570580/how-to-show-the-next
    ## Custom HTML for Next/Previous
    [https://github.com/markirby/FlexSlider-ManualDirectionControls](https://github.com/markirby/FlexSlider-ManualDirectionControls)

    #Lettering.js
    ##Lettering.js
    [https://github.com/davatron5000/Lettering.js](https://github.com/davatron5000/Lettering.js)
  2. @ajmalafif ajmalafif revised this gist Jan 20, 2013. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion note.md
    Original file line number Diff line number Diff line change
    @@ -2,4 +2,7 @@
    More on it [here:http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider](http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider)

    ## Custom HTML for Next/Previous
    [https://github.com/markirby/FlexSlider-ManualDirectionControls](https://github.com/markirby/FlexSlider-ManualDirectionControls)
    [https://github.com/markirby/FlexSlider-ManualDirectionControls](https://github.com/markirby/FlexSlider-ManualDirectionControls)

    #Lettering.js
    [https://github.com/davatron5000/Lettering.js](https://github.com/davatron5000/Lettering.js)
  3. @ajmalafif ajmalafif revised this gist Jan 20, 2013. 1 changed file with 5 additions and 1 deletion.
    6 changes: 5 additions & 1 deletion note.md
    Original file line number Diff line number Diff line change
    @@ -1 +1,5 @@
    More on it [here:http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider](http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider)
    ## Click to slide
    More on it [here:http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider](http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider)

    ## Custom HTML for Next/Previous
    [https://github.com/markirby/FlexSlider-ManualDirectionControls](https://github.com/markirby/FlexSlider-ManualDirectionControls)
  4. @ajmalafif ajmalafif revised this gist Jan 20, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion note.md
    Original file line number Diff line number Diff line change
    @@ -1 +1 @@
    More on it [here:](http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider)
    More on it [here:http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider](http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider)
  5. @ajmalafif ajmalafif revised this gist Jan 20, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions note.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    More on it [here:](http://stackoverflow.com/questions/9570580/how-to-show-the-next-slide-when-you-click-on-the-image-in-flexslider)
  6. @ajmalafif ajmalafif created this gist Jan 20, 2013.
    12 changes: 12 additions & 0 deletions slider.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    $(window).load(function() {
    $('.flexslider').flexslider({
    directionNav : false,
    animation: "slide",
    start: function(slider) {
    $('.slides li img').click(function(event){
    event.preventDefault();
    slider.flexAnimate(slider.getTarget("next"));
    });
    }
    });
    });