12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- const systemInfo = function() {
-
-
- let systemInfomations = uni.getSystemInfoSync()
-
- let scaleFactor = 750 / systemInfomations.windowWidth
-
- let windowHeight = systemInfomations.windowHeight * scaleFactor
-
- let windowWidth = systemInfomations.windowWidth * scaleFactor
-
- let statusBarHeight = (systemInfomations.statusBarHeight) * scaleFactor
-
-
- let navHeight = 0
-
-
-
-
- const menuButtonInfo = wx.getMenuButtonBoundingClientRect()
-
- let menuButtonHeight = menuButtonInfo.height * scaleFactor
-
- let menuButtonWidth = menuButtonInfo.width * scaleFactor
-
- let menuButtonTop = menuButtonInfo.top * scaleFactor
-
- let menuButtonRight = menuButtonInfo.right * scaleFactor
-
- let menuButtonBottom = menuButtonInfo.bottom * scaleFactor
-
- let menuButtonLeft = menuButtonInfo.left * scaleFactor
-
-
- navHeight = menuButtonHeight + (menuButtonTop - statusBarHeight) * 2
-
-
-
-
- return {
- scaleFactor,
- windowHeight,
- windowWidth,
- statusBarHeight,
- menuButtonHeight,
- menuButtonWidth,
- menuButtonTop,
- menuButtonRight,
- menuButtonBottom,
- menuButtonLeft,
- navHeight
- }
-
-
-
- return {
- scaleFactor,
- windowHeight,
- windowWidth,
- statusBarHeight
- }
-
- }
-
- export {
- systemInfo
- }
|