forked from Auto-Plugin/autofit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
58 lines (58 loc) · 2.05 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export interface IgnoreOption {
el: string;
height?: string;
width?: string;
scale?: number;
fontSize?: number;
}
export interface AutofitOption {
el?: string;
dw?: number;
dh?: number;
resize?: boolean;
ignore?: (IgnoreOption | string)[];
transition?: number;
delay?: number;
limit?: number;
cssMode?: "scale" | "zoom";
}
declare interface autofit {
/**
* 参数列表
* 对象:
*
* @param {AutofitOption|String|undefined} options
* @param {boolean|undefined} isShowInitTip
* - 传入对象,对象中的属性如下:
* - el(可选):渲染的元素,默认是 "body"
* - dw(可选):设计稿的宽度,默认是 1920
* - dh(可选):设计稿的高度,默认是 1080
* - resize(可选):是否监听resize事件,默认是 true
* - ignore(可选):忽略缩放的元素(该元素将反向缩放),参数见readme.md
* - transition(可选):过渡时间,默认是 0
* - delay(可选):延迟,默认是 0
* - limit(可选):缩放限制,默认是 0.1
* - cssMode(可选):缩放模式,默认是 scale,可选值有 scale 和 zoom, zoom 模式可能对事件偏移有利
*/
init(options?: AutofitOption | string, isShowInitTip?: boolean): void;
/**
* @param {String} id
* 关闭autofit.js造成的影响
*
*/
off(id?: string): void;
/**
* 检查autofit.js是否正在运行
*/
isAutofitRunnig: boolean;
/**
* @param {string} el - 待处理的元素选择器
* @param {boolean} isKeepRatio - 是否保持纵横比(可选,默认为true,false时将充满父元素)
* @param {number|undefined} level - 缩放等级,用于手动调整缩放程度(可选,默认为 1)
*/
elRectification: typeof elRectification;
}
declare const autofit: autofit;
declare function elRectification(el: string, isKeepRatio?: string | boolean, level?: string | number): void;
export { elRectification };
export default autofit;