1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| <template>
| <div id="sizeAdapterWrapper">
| <slot></slot>
| </div>
| </template>
|
| <script>
| export default {
| name: "SizeAdapter",
| props: {
| originDeviceInfo: {
| type: Object,
| default: () => {
| return {
| width: window.innerWidth,
| height: window.innerHeight,
| };
| },
| },
| },
| created() {
| window.addEventListener("resize", this.adapteSlot);
| },
| mounted() {
| // this.adapteSlot();
| },
| beforeDestroy() {
| window.removeEventListener("resize", this.adapteSlot);
| },
| methods: {
| adapteSlot() {
| const nowWidth = window.innerWidth;
| const nowHeight = window.innerHeight;
|
| const { width, height } = this.originDeviceInfo;
|
| const xScale = nowWidth / width;
| const yScale = nowHeight / height;
| this.$scopedSlots.default()[0].elm.style.transform = `scale3d(${xScale},${yScale},1)`;
| },
| },
| };
| </script>
|
| <style lang="scss" scoped></style>
|
|