地址 vue-keep-ratiohtml
该组件主要是用做高效的设定 dom 元素,保持固定的宽高比,效果以下vue
main.jsgit
import KeepRatio from 'vue-keep-ratio' Vue.use(KeepRatio)
<template> <div style="width: 1920px"> <div id="screen" style="width: 100%" v-ratio></div> </div> </template>
div screen
将会保持 width=1920px;height:1080px
github
或者浏览器
<template> <div style="width: 500px"> <div id="cube" style="width: 100%" v-ratio="{ratio:1/1,fixed:'width',keep:true, debounce: 100}"></div> </div> </template>
div cube
将会一直保持方块状, 浏览器改变大小时,也会保持宽高 1 : 1bash
安装 parceldom
parcel examples/base/index.html