2.2.0 • Published 1 year ago

v-scale-screen v2.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

v-scale-screen

English | 简体中文

Large-screen adaptive container component, which can be used for large-screen project development, realizes screen adaptation, and can be adaptive according to width, height, and width and height ratios, and full-screen adaptation

Note: Please use version 1.x for vue 2, and version 2.0 or above for vue 3

Demo

图例

Install

npm install v-scale-screen
# or
yarn add v-scale-screen

Note: Please use version 1.x for vue 2, version 1.x for vue 2, version 1.x for vue 2, and important things to say three times

vue2

In vue2, we use plugin export, so we need Vue.use() to register

// main.js
import Vue from 'vue'
import VScaleScreen from 'v-scale-screen'

Vue.use(VScaleScreen)
<template>
  <v-scale-screen width="1920" height="1080">
    <div>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
    </div>
  </v-scale-screen>
</template>

Note: Please set body style to overflow: hidden; when using

Vue3

We export as components in vue 3

<template>
  <v-scale-screen width="1920" height="1080">
    <div>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
      <v-chart>....</v-chart>
    </div>
  </v-scale-screen>
</template>

<script>
import { defineComponent } from 'vue'
import VScaleScreen from 'v-scale-screen'

export default defineComponent({
  name: 'Demo',
  components: {
    VScaleScreen
  }
})
</script>

API

PropertyDescriptionTypeDefault
widthLarge screen widthNumber or String1920
heightLarge screen heightNumber or String1080
autoScaleAdaptive configuration, when configured as a boolean type, it is to enable or disable the adaptive configuration. When configured as an object, if x is true, the x-axis generates a margin; when y is true, the y-axis generates a margin. This configuration is enabled when the full screen is enabled failBoolean or {x:boolean,y:boolean}true
delayWindow resize delay timeNumber500
fullScreenFull-screen self-adaptive, there will be a stretching effect when this configuration item is enabled, and auto Scale will be invalid. It is not recommended to enable it if it is not necessaryBooleanfalse
boxStyleModify the container style, such as the side background color when displaying in the center, conforming to the Vue two-way binding style standard formatObjectnull
wrapperStyleModify the adaptive area style to conform to the Vue two-way binding style standard formatObjectnull
bodyOverflowHiddenAfter enabling, the body style will be automatically set to overflow: hiddenBooleantrue
2.2.0

1 year ago

2.1.0

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

0.1.2

2 years ago

2.0.11

2 years ago

2.0.12

2 years ago

0.1.3

2 years ago

1.0.0

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago