UNPKG

muzidigbig-utils-npm

Version:

一个日常开发积累的工具包。 每次 npm publish 都需要修改 package.json version版本号保证其唯一。

11 lines (10 loc) 333 B
/** * 7. 获取当前生效的css * targetEle --> 事件源dom * property --> 要获取的样式 * 返回值:有单位会带单位 */ function getStyle(targetEle, property) { return targetEle.currentStyle ? targetEle.currentStyle[property] : window.getComputedStyle(targetEle, null)[property]; } export default getStyle;