vue 元素宽度_Vue指令可根据元素宽度自动调整字体大小

vue 元素宽度

Vue调整文字大小 (Vue Resize Text)

A vue directive which automatically resize font size based on element width.

Vue指令可根据元素宽度自动调整字体大小。

It makes the font-size flexible on fluid or responsive layout.

它使字体大小在灵活或响应式布局上具有灵活性。

View demo 查看演示 Download Source 下载源

安装 (Installation)

Install via NPM

通过NPM安装

$ npm install vue-resize-text --save

$ npm install vue-resize-text --save

Install via CDN

通过CDN安装


全球 (Global)

Register VueResizeText globally:

全局注册VueResizeText:

import Vue from 'Vue';
import VueResizeText from 'vue-resize-text';

Vue.use(VueResizeText)

Directive v-resize-text then can be used in any of Component

然后可以在任何组件中使用指令v-resize-text

本地 (Local)

Include the VueResizeText directive directly into your component using import:

使用import将VueResizeText指令直接包含到您的组件中:


用法 (Usage)

基本用法 (Basic usage)



指令参数 (Directive Arguments)

v-resize-text="{ratio:1.5, minFontSize: '30px', maxFontSize: '100px', delay: 200}"

v-resize-text="{ratio:1.5, minFontSize: '30px', maxFontSize: '100px', delay: 200}"

Argument Description Type Default
ratio Font Ratio is the tweek to make the text resize properly, greater then 1 makes the font smaller and less then 1 make the font bigger Number 1
minFontSize Minimum font-size threshold in px Number/String 16px or 16
maxFontSize Maximum font-size threshold in px Number/String 500px or 500
delay Debound time delay on window resize Number 200
论据 描述 类型 默认
字体比率是使文本正确调整大小的t周,大于1会使字体变小,小于1会使字体变大 1个
minFontSize 最小字体大小阈值(以像素为单位) 数字/字符串 16px或16
maxFontSize 最大字体大小阈值(以像素为单位) 数字/字符串 500px或500
延迟 窗口调整大小的出站时间延迟 200

翻译自: https://vuejsexamples.com/a-vue-directive-which-automatically-resize-font-size-based-on-element-width/

vue 元素宽度

你可能感兴趣的:(字符串,python,vue,js,numpy)