Should be possible using some custom JS. For pause on hover, add this to your theme’s header.php before the </head>
:
<script type="text/javascript">
jQuery(document).ready(function($) {
$('.easingsliderlite').on('mouseenter', function() {
$('.easingsliderlite').data('easingsliderlite').startPlayback();
});
$('.easingsliderlite').on('click', function() {
$('.easingsliderlite').data('easingsliderlite').endPlayback();
});
});
</script>
For ending playback after your slideshow has cycled through all of the slides, use this code:
<script type="text/javascript">
jQuery(document).ready(function($) {
var inc = 0;
$('.easingsliderlite').data('easingsliderlite').$el.on('nextslide', function() {
inc++;
if (inc == $('.easingsliderlite').data('easingsliderlite').count) {
$('.easingsliderlite').data('easingsliderlite').endPlayback();
}
});
});
</script>
Hope these do the trick ??