94 lines
2.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { hasDOM } from './dom';
import { each } from './object';
var animationEndEventNames = {
WebkitAnimation: 'webkitAnimationEnd',
OAnimation: 'oAnimationEnd',
animation: 'animationend'
};
var transitionEventNames = {
WebkitTransition: 'webkitTransitionEnd',
OTransition: 'oTransitionEnd',
transition: 'transitionend'
};
/**
* 是否支持某些动效事件如果支持返回相应的end事件名
* @private
* @param {Object<String>} names
* @return {Object|false}
*/
function _supportEnd(names) {
/* istanbul ignore if */
if (!hasDOM) {
return false;
}
var el = document.createElement('div');
var ret = false;
each(names, function (val, key) {
/* istanbul ignore else */
if (el.style[key] !== undefined) {
ret = { end: val };
return false;
}
});
return ret;
}
/**
* 是否支持某些CSS属性
* @private
* @param {Object<Array<String>>} names
* @return {Boolean} is support
*/
function _supportCSS(names) {
/* istanbul ignore if */
if (!hasDOM) {
return false;
}
var el = document.createElement('div');
var ret = false;
each(names, function (val, key) {
each(val, function (item) {
try {
el.style[key] = item;
ret = ret || el.style[key] === item;
} catch (e) {
// It will be throw error when set unknown property under IE8
}
return !ret; // 如果有一个支持就返回false后面不需要再判断
});
return !ret;
});
return ret;
}
/**
* 是否支持animation以及动画结束事件名
* @type {Object|false}
* @property {String} end 动画结束事件名
*/
export var animation = _supportEnd(animationEndEventNames);
/**
* 是否支持transition以及过滤效果结束事件名
* @type {Object|false}
* @property {String} end 过渡效果结束事件名
*/
export var transition = _supportEnd(transitionEventNames);
/**
* 是否支持flex属性
* @type {Boolean}
*/
export var flex = _supportCSS({
display: ['flex', '-webkit-flex', '-moz-flex', '-ms-flexbox']
});