地址 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