You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.3 KiB

11 months ago
<template>
11 months ago
<div v-bind:style="styleObject" class="scale-box">
<slot></slot>
</div>
</template>
<script>
import debounce from "lodash.debounce";
const that = this;
export default {
components: {},
data() {
return {
width: 2010,
height: 1080,
scaleX: null,
scaleY: null,
};
},
computed: {
styleObject() {
let obj = {
transform: `scale(${this.scaleX},${this.scaleY}) translate(-50%, -50%)`,
WebkitTransform: `scale(${this.scaleX},${this.scaleY}) translate(-50%, -50%)`,
width: this.width + "px",
height: this.height + "px",
11 months ago
};
11 months ago
return obj;
11 months ago
},
11 months ago
},
mounted() {
this.getScale();
window.addEventListener("resize", this.setScale);
},
methods: {
getScale() {
// 分别计算X轴和Y轴的缩放比例
this.scaleX = window.innerWidth / this.width;
this.scaleY = window.innerHeight / this.height;
11 months ago
},
11 months ago
setScale: debounce(function () {
// 获取到缩放比,设置它
11 months ago
this.getScale();
11 months ago
}, 500),
},
beforeDestroy() {
window.addEventListener("resize", this.setScale);
},
};
</script>
<style scoped lang="scss">
.scale-box {
transform-origin: 0 0;
position: absolute;
left: 50%;
top: 50%;
transition: 0.3s;
}
</style>