Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cc5874dc53b8678dac6596201f73ee87186b402 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# RFS [![npm][npm-image]][npm-url]

> RFS (abbreviation for responsive font size) is an algorithm which **automatically calculates the appropriate font size** based on the dimensions of the browser viewport. It's available in 5 languages:
> - [SCSS](http://sass-lang.com/)
> - [Sass](http://sass-lang.com/)
> - [PostCSS](http://postcss.org/)
> - [Less](http://lesscss.org/)
> - [Stylus](http://stylus-lang.com/)

## Advantages

- Font sizes will **rescale for every screen or device**, this prevents long words from being chopped off the viewport on small devices.
- The minimum font size (configuration variable) will prevent the font size from becoming too small so readability can be assured.
- **Super easy** to use, no need to define complex configurations for each font size.
- Font sizes of all text elements will always remain in relation with each other.


![RFS](http://i.imgur.com/gJH6m6g.gif)

## Installation

RFS can be installed using a package manager (recommended):

**npm:**

```sh
$ npm install rfs --save
```

**yarn:**

```sh
$ yarn add rfs
```

**Bower:**

```sh
$ bower install rfs --save
```

**Copy/paste (not recommended):**

The source files can also be downloaded manually and used in a project. This method is not recommended because you
lose the ability to easily and quickly manage and update RFS as a dependency.


## Usage

### SCSS

```scss
.title {
  @include responsive-font-size(4rem); // OR @include responsive-font-size(64px); OR @include rfs(64);
}
```

### Sass

```sass
.title
  +responsive-font-size(4rem) // OR +responsive-font-size(64px) OR +rfs(64)
```

### PostCSS

```postcss
.title {
  responsive-font-size: 4rem; // OR responsive-font-size: 64px; OR rfs: 64;
}
```

### Less

```less
.title {
  .responsive-font-size(4rem); // OR .responsive-font-size(64px); OR .rfs(64);
}  
```

### Stylus

```stylus
.title
  responsive-font-size(4rem) // OR responsive-font-size(64px) OR rfs(64)
```

### Generated css

```css
.title {
  font-size: 4rem;
}

@media (max-width: 1200px) {
  .title {
    font-size: calc(1.6rem + 3.2vw);
  }
}
```

## Configuration

![RFS visualisation](https://i.imgur.com/yaOonFe.png)

### Minimum font size <sub><sup>(unit in `px` or `rem`)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-minimum-font-size`  
> **Less:** `@rfs-minimum-font-size`  
> **PostCSS:** `minimumFontSize`  

The option will prevent the font size from becoming too small on smaller screens. If the font size which is passed to RFS is smaller than this minimum font size, no fluid font rescaling will take place.  
*Default value: `1rem`*


### Font size unit <sub><sup>(`px` or `rem`)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-font-size-unit`  
> **Less:** `@rfs-font-size-unit`  
> **PostCSS:** `fontSizeUnit`  

The output font size will be rendered in this unit.  
*Default value: `rem`*


### Breakpoint <sub><sup>(in `px`, `em` or `rem`)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-breakpoint`  
> **Less:** `@rfs-breakpoint`  
> **PostCSS:** `breakpoint`  

Above this breakpoint, the font size will be equal to the font size you passed to RFS; below the breakpoint, the font size will dynamically scale.  
*Default value: `1200px`*


### Breakpoint unit <sub><sup>(`px`, `em` or `rem`)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-breakpoint-unit`  
> **Less:** `@rfs-breakpoint-unit`  
> **PostCSS:** `breakpointUnit`  

The width of the max width in the media query will be rendered in this unit.  
*Default value: `px`*


### Factor <sub><sup>(number)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-factor`  
> **Less:** `@rfs-factor`  
> **PostCSS:** `factor`  

This value determines the strength of font size resizing. The higher the factor, the less difference there is between font sizes on small screens. The lower the factor, the less influence RFS has, which results in bigger font sizes for small screens. The factor must me greater than 1, setting it to 1 will disable dynamic rescaling.  
*Default value: `5`*


### Two dimensional <sub><sup>(boolean)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-two-dimensional`  
> **Less:** `@rfs-two-dimensional`  
> **PostCSS:** `twoDimensional`  

Enabling the two dimensional media queries will determine the font size based on the smallest side of the screen with `vmin`. This prevents the font size from changing if the device toggles between portrait and landscape mode.  
*Default value: `false`*


### Class <sub><sup>(boolean)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-class`  
> **Less:** `@rfs-class`  
> **PostCSS:** `class`  

RFS can be enabled or disabled with a class. There are 3 options:
  
- `disable`
  When the the disable classes are generated you can add the `.disable-responsive-font-size` class to an element to disable responsive font sizes for the element and its child elements.  
- `enable`
  RFS is disabled by default in this case. The `.enable-responsive-font-size` class can be added to an element to enable responsive font sizes for the element and its child elements.  
- `false`
  No extra classes are generated.  

*Default value: `false`*


### Safari iframe resize bug fix <sub><sup>(boolean)</sup></sub>

> **SCSS, Sass & Stylus:** `$rfs-safari-iframe-resize-bug-fix`  
> **Less:** `@rfs-safari-iframe-resize-bug-fix`  
> **PostCSS:** `safariIframeResizeBugFix`  

Safari doesn't resize its font size in an iframe if the iframe is resized. To fix this `min-width: 0vw` can be added and that's what happens if this option is enabled. See [#14](https://github.com/twbs/rfs/issues/14).  

*Default value: `false`*


## !important

By setting a second parameter to true, `!important` is added after the font-size value. (Example is in `scss`)

```scss
.label {
  @include responsive-font-size(2.5rem, true);
}
```

CSS:

```css
.label {
  font-size: 2.5rem !important;
}

@media (max-width: 1200px) {
  .label {
    font-size: calc(1.3rem + 1.6vw) !important;
  }
}
```

## Best practices

- Remember to set RFS on your font size of your `html` or `body` (especially if the minimum font size is lowered), otherwise some text may not dynamically rescale. Note that setting RFS on `html` can influence the value of `rem`.
- Always set your line-heights relative (in `em` or unitless).
- More tips and tricks with examples can be found [here](https://medium.com/@martijn.cuppens/magic-font-resizing-with-rfs-b5d781296dd6) (written when only the SCSS version was made).

## Demos

- [Simple Codepen Demo](http://codepen.io/MartijnCuppens/pen/ZBjdMy)
- [RFS in bootstrap demo](http://martijncuppens.github.io/rfs)

## Creator

**Martijn Cuppens**

* <https://twitter.com/Martijn_Cuppens>
* <https://github.com/MartijnCuppens>

## Copyright and license

Code released under [the MIT license](https://github.com/twbs/rfs/blob/master/LICENSE).


[npm-image]: https://img.shields.io/npm/v/rfs.svg
[npm-url]: https://npmjs.org/package/rfs