-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
72 lines (47 loc) · 2.24 KB
/
example.html
File metadata and controls
72 lines (47 loc) · 2.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="description" content="">
<meta name="author" content="">
<title>Text Resize</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<!-- Responsive column example -->
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
<h1 class="autoFontFill">The quick brown fox jumps over the lazy dog.</h1>
</div>
<div class="col-md-4">
<h1 class="autoFontFill">The quick brown fox jumps over the lazy dog.</h1>
</div>
<div class="col-md-4">
<h1 class="autoFontFill">The quick brown fox jumps over the lazy dog.</h1>
</div>
</div>
</div>
<div style="height: 100px;"></div> <!-- spacer -->
<!-- Basic example -->
<h1 class="autoFontFill">The quick brown fox jumps over the lazy dog.</h1>
<div style="height: 100px;"></div> <!-- spacer -->
<!-- Minimum font example -->
<h1 class="autoFontFill" data-autoFont-min="10">The quick brown fox jumps over the lazy dog.</h1>
<div style="height: 100px;"></div> <!-- spacer -->
<!-- Maximum font example -->
<h1 class="autoFontFill" data-autoFont-max="70">The quick brown fox jumps over the lazy dog.</h1>
<div style="height: 100px;"></div> <!-- spacer -->
<!-- Min Max font example -->
<h1 class="autoFontFill" data-autoFont-min="10" data-autoFont-max="70">The quick brown fox jumps over the lazy dog.</h1>
<div style="height: 100px;"></div> <!-- spacer -->
<!-- Percentage width example -->
<h1 class="autoFontFill" data-autoFont-width="50">The quick brown fox jumps over the lazy dog.</h1>
<div style="height: 100px;"></div> <!-- spacer -->
<!-- All together now! -->
<h1 class="autoFontFill" data-autoFont-min="10" data-autoFont-max="70" data-autoFont-width="50">The quick brown fox jumps over the lazy dog.</h1>
<div style="height: 100px;"></div> <!-- spacer -->
<script src="autoFont.js"></script>
</body>
</html>