quasar-framework
Version:
Simultaneously build desktop/mobile SPA websites & phone/tablet apps with VueJS
72 lines (58 loc) • 1.3 kB
JavaScript
export function offset (el) {
if (el === window) {
return {top: 0, left: 0}
}
let {top, left} = el.getBoundingClientRect()
return {top, left}
}
export function style (el, property) {
return window.getComputedStyle(el).getPropertyValue(property)
}
export function height (el) {
if (el === window) {
return viewport().height
}
return parseFloat(style(el, 'height'))
}
export function width (el) {
if (el === window) {
return viewport().width
}
return parseFloat(style(el, 'width'))
}
export function css (element, css) {
let style = element.style
Object.keys(css).forEach(prop => {
style[prop] = css[prop]
})
}
export function viewport () {
let
e = window,
a = 'inner'
if (!('innerWidth' in window)) {
a = 'client'
e = document.documentElement || document.body
}
return {
width: e[a + 'Width'],
height: e[a + 'Height']
}
}
export function ready (fn) {
if (typeof fn !== 'function') {
return
}
if (document.readyState === 'complete') {
return fn()
}
document.addEventListener('DOMContentLoaded', fn, false)
}
const prefix = ['-webkit-', '-moz-', '-ms-', '-o-']
export function cssTransform (val) {
let o = {transform: val}
prefix.forEach(p => {
o[p + 'transform'] = val
})
return o
}