aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/utils/animation.js
blob: 49bc0b8c947bec20efc113f22baa3c13fee2bd78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// ==========================================================================
// Animation utils
// ==========================================================================

import { toggleHidden } from './elements';
import is from './is';

export const transitionEndEvent = (() => {
    const element = document.createElement('span');

    const events = {
        WebkitTransition: 'webkitTransitionEnd',
        MozTransition: 'transitionend',
        OTransition: 'oTransitionEnd otransitionend',
        transition: 'transitionend',
    };

    const type = Object.keys(events).find(
        event => element.style[event] !== undefined,
    );

    return is.string(type) ? events[type] : false;
})();

// Force repaint of element
export function repaint(element) {
    setTimeout(() => {
        try {
            toggleHidden(element, true);
            element.offsetHeight; // eslint-disable-line
            toggleHidden(element, false);
        } catch (e) {
            // Do nothing
        }
    }, 0);
}