Skip to content

Instantly share code, notes, and snippets.

@sagarjadhav
Created October 4, 2021 15:57
Show Gist options
  • Save sagarjadhav/c1895d00e0c17ca4c815ab4ae1c85b18 to your computer and use it in GitHub Desktop.
Save sagarjadhav/c1895d00e0c17ca4c815ab4ae1c85b18 to your computer and use it in GitHub Desktop.
Slick slider custom Paging with Image and accessibility
$( document ).on( 'ready', () => {
$( '.slider-nav' ).slick( {
responsive: [
{
breakpoint: 767,
settings: {
dots: true,
customPaging: function( slick, index ) {
var targetImage = slick.$slides.eq( index ).find( 'img' ).attr( 'src' );
return '<button><img src=" ' + targetImage + ' " alt="image" /></button>';
}
}
}
]
} );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment