function getVendorPrefix() {
// 使用body是为了避免在还需要传入元素
var body = document.body || document.documentElement,
style = body.style,
vendor = [‘webkit‘, ‘khtml‘, ‘moz‘, ‘ms‘, ‘o‘],
i = 0;
while (i < vendor.length) {
// 此处进行判断是否有对应的内核前缀
if (typeof style[vendor[i] + ‘Transition‘] === ‘string‘) {
return vendor[i];
}
i++;
}
}
时间: 2024-10-10 16:25:05