some modify add auto scale web page deal
This commit is contained in:
parent
ec02217c9f
commit
0db958b8cb
62
src/App.vue
62
src/App.vue
|
@ -1,17 +1,62 @@
|
||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app" ref="app">
|
||||||
<img alt="Vue logo" src="./assets/logo.png">
|
<current-data-v />
|
||||||
<HelloWorld msg="Welcome to Your Vue.js App"/>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import HelloWorld from './components/HelloWorld.vue'
|
import currentDataV from './views/electronicFile/index'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'app',
|
name: 'app',
|
||||||
components: {
|
components: {
|
||||||
HelloWorld
|
currentDataV
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
scale: 0,
|
||||||
|
app: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init () {
|
||||||
|
const { initConfig, setAppScale, bindReSizeEventHandler } = this
|
||||||
|
|
||||||
|
initConfig()
|
||||||
|
|
||||||
|
setAppScale()
|
||||||
|
|
||||||
|
bindReSizeEventHandler()
|
||||||
|
},
|
||||||
|
initConfig () {
|
||||||
|
const { width, height } = screen
|
||||||
|
|
||||||
|
this.allWidth = width
|
||||||
|
|
||||||
|
const app = this.app = this.$refs['app']
|
||||||
|
|
||||||
|
app.style.width = `${width}px`
|
||||||
|
app.style.height = `${height}px`
|
||||||
|
},
|
||||||
|
setAppScale () {
|
||||||
|
const { allWidth, app } = this
|
||||||
|
|
||||||
|
const currentWidth = document.body.clientWidth
|
||||||
|
|
||||||
|
app.style.transform = `scale(${currentWidth / allWidth})`
|
||||||
|
},
|
||||||
|
bindReSizeEventHandler () {
|
||||||
|
const { debounce, setAppScale } = this
|
||||||
|
|
||||||
|
if (!debounce) return
|
||||||
|
|
||||||
|
window.addEventListener('resize', debounce(100, setAppScale))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted () {
|
||||||
|
const { init } = this
|
||||||
|
|
||||||
|
init()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -19,10 +64,7 @@ export default {
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
#app {
|
#app {
|
||||||
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
||||||
-webkit-font-smoothing: antialiased;
|
transform-origin: left top;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
overflow: hidden;
|
||||||
text-align: center;
|
|
||||||
color: #2c3e50;
|
|
||||||
margin-top: 60px;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue