vue-easy-notice-bar
Version:
Vue.js 2+ notice-bar plugin
14 lines (12 loc) • 307 B
JavaScript
export const getElWid = (dom) => {
return dom.getBoundingClientRect().width
|| window.getComputedStyle(
dom, null
).width.replace('px', '')
}
export const getElHei = (dom) => {
return dom.getBoundingClientRect().height
|| window.getComputedStyle(
dom, null
).height.replace('px', '')
}