vivify icon indicating copy to clipboard operation
vivify copied to clipboard

Love the work! User experience error

Open TylerL-uxai opened this issue 8 years ago • 1 comments

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 :)

TylerL-uxai avatar Sep 02 '17 01:09 TylerL-uxai

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.

CodeBrauer avatar Sep 03 '17 22:09 CodeBrauer