| | |
| | | */ |
| | | export function resetStyle (style) { |
| | | if (!style) return {} |
| | | if (sessionStorage.getItem('appType') === 'mob') { |
| | | let _style = JSON.stringify(style) |
| | | |
| | | let _style = JSON.stringify(style) |
| | | _style = _style.replace(/@mywebsite@\//ig, window.GLOB.baseurl) |
| | | |
| | | if (sessionStorage.getItem('appType') === 'mob') { |
| | | // scaleview |
| | | _style = _style.replace(/\d+vw/ig, (word) => { |
| | | return parseFloat(word) * (window.GLOB.winWidth || 420) / 100 + 'px' |
| | |
| | | return parseFloat(word) * (window.GLOB.winHeight || 738) / 100 + 'px' |
| | | // return parseFloat(word) * 615 / 100 + 'px' |
| | | }) |
| | | |
| | | return JSON.parse(_style) |
| | | } |
| | | return JSON.parse(JSON.stringify(style)) |
| | | |
| | | return JSON.parse(_style) |
| | | } |