vivify
vivify copied to clipboard
Love the work! User experience error
Love this! Here's UX feedback... Don't have to change the visual design, but it would be nice of the keyboard arrows automatically scrolled through the different animations. Thanks if you implement this :)
I made a snippet for that:
$('body').on('keyup', (e) => {
var currentIndex = $('#anims :selected')[0].index;
if (e.key == 'ArrowLeft') {
$('#anims option').eq(currentIndex - 1).prop('selected', true);
$('#anims').trigger('change');
} else if (e.key == 'ArrowRight') {
$('#anims option').eq(currentIndex + 1).prop('selected', true);
$('#anims').trigger('change');
}
});
I prefer using left/right, but it can be easily changed to up/down, like the icons in the website.