|
|
@@ -1,6 +1,6 @@
|
|
|
// 屏幕适配 mixin 函数
|
|
|
|
|
|
-// * 默认缩放值
|
|
|
+/*// * 默认缩放值
|
|
|
const scale = {
|
|
|
width: '1',
|
|
|
height: '1',
|
|
|
@@ -11,7 +11,7 @@ const baseWidth = 1920
|
|
|
const baseHeight = 1080
|
|
|
|
|
|
// * 需保持的比例(默认1.77778)
|
|
|
-const baseProportion = parseFloat((baseWidth / baseHeight).toFixed(5))
|
|
|
+const baseProportion = parseFloat((baseWidth / baseHeight).toFixed(5))*/
|
|
|
|
|
|
export default {
|
|
|
data() {
|
|
|
@@ -28,7 +28,7 @@ export default {
|
|
|
window.removeEventListener('resize', this.resize)
|
|
|
},
|
|
|
methods: {
|
|
|
- calcRate () {
|
|
|
+ /*calcRate () {
|
|
|
const appRef = this.$refs["appRef"]
|
|
|
if (!appRef) return
|
|
|
// 当前宽高比
|
|
|
@@ -46,9 +46,25 @@ export default {
|
|
|
appRef.style.transform = `scale(${scale.width}, ${scale.height}) translate(-50%, -50%)`
|
|
|
}
|
|
|
}
|
|
|
+ },*/
|
|
|
+ calcRate(){
|
|
|
+ const appRef = this.$refs["appRef"]
|
|
|
+ if (!appRef) return
|
|
|
+ const newWidth = window.innerWidth;
|
|
|
+ const newHeight = window.innerHeight;
|
|
|
+
|
|
|
+ if (appRef) {
|
|
|
+ let newScaleX = newWidth / 1920;
|
|
|
+ let newScaleY = newHeight / 1080;
|
|
|
+
|
|
|
+ let newTranslateX = ((1920 - newWidth) / 2 / newWidth * 100).toFixed(5) + '%';
|
|
|
+ let newTranslateY = ((1080 - newHeight) / 2 / newHeight * 100).toFixed(5) + '%';
|
|
|
+ appRef.style.transform = `scale(${newScaleX.toFixed(5)}, ${newScaleY.toFixed(5)}) translate(-${newTranslateX}, -${newTranslateY})`
|
|
|
+ console.log(`scale(${newScaleX.toFixed(5)}, ${newScaleY.toFixed(5)}) translate(-${newTranslateX}, -${newTranslateY})`)
|
|
|
+ }
|
|
|
},
|
|
|
resize () {
|
|
|
- clearTimeout(this.drawTiming);
|
|
|
+ /*clearTimeout(this.drawTiming);*/
|
|
|
const isFullScreen = document.fullscreenElement
|
|
|
if (isFullScreen) {
|
|
|
this.isFullScreen = true;
|
|
|
@@ -59,9 +75,10 @@ export default {
|
|
|
// this.$refs['fullScreen'].style.display='inline-block';
|
|
|
//this.$refs['exitFullScreen'].style.display='none';
|
|
|
}
|
|
|
- this.drawTiming = setTimeout(() => {
|
|
|
+ /*this.drawTiming = setTimeout(() => {
|
|
|
this.calcRate()
|
|
|
- }, 10000)
|
|
|
+ }, 4000)*/
|
|
|
+ this.calcRate()
|
|
|
},
|
|
|
fullScreen(){
|
|
|
var docElm = document.documentElement; //若要全屏页面中div,var element= document.getElementById("divID");
|