您的位置:首页技术文章
文章详情页

css3 - 怎么判断浏览器是否支持translate3d

浏览:53日期:2023-07-24 08:41:42

问题描述

transform之类的可以for in检测出来,但是translate3d要怎么检测呢?

问题解答

回答1:

function has3d() { if (!window.getComputedStyle) {return false; } var el = document.createElement(’p’), has3d,transforms = { ’webkitTransform’:’-webkit-transform’, ’OTransform’:’-o-transform’, ’msTransform’:’-ms-transform’, ’MozTransform’:’-moz-transform’, ’transform’:’transform’}; // Add it to the body to get the computed style. document.body.insertBefore(el, null); for (var t in transforms) {if (el.style[t] !== undefined) { el.style[t] = 'translate3d(1px,1px,1px)'; has3d = window.getComputedStyle(el).getPropertyValue(transforms[t]);} } document.body.removeChild(el); return (has3d !== undefined && has3d.length > 0 && has3d !== 'none');}要做到各种浏览器兼容,你自己要去测试一下。

标签: CSS
相关文章: