forked from designmodo/Flat-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtooltips.html
More file actions
64 lines (48 loc) · 2.76 KB
/
tooltips.html
File metadata and controls
64 lines (48 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Flat UI Free</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Loading Bootstrap -->
<link href="../../dist/css/vendor/bootstrap.min.css" rel="stylesheet">
<!-- Loading Flat UI -->
<link href="../../dist/css/flat-ui.css" rel="stylesheet">
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="../../dist/js/vendor/html5shiv.js"></script>
<script src="../../dist/js/vendor/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<h4>Tooltips</h4>
<h6>Text Example</h6>
<p class="muted">Tight pants next level keffiyeh <a title="Default tooltip" data-toggle="tooltip" href="#">you probably</a>
haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan,
mcsweeney's fixie sustainable quinoa 8-bit american apparel <a title="Another tooltip" data-toggle="tooltip" href="#">have a</a>
terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa,
four loko mcsweeney's cleanse vegan chambray. A really ironic artisan
<a title="Another one here too" data-toggle="tooltip" href="#">whatever keytar</a>, scenester farm-to-table banksy
Austin <a title="" data-toggle="tooltip" href="#" data-original-title="The last tip!">twitter handle</a> freegan cred raw denim single-origin coffee viral.
</p>
<h6>Four directions</h6>
<button title="" data-placement="left" data-toggle="tooltip" class="btn btn-default mrs" type="button" data-original-title="Tooltip on left">Tooltip on left</button>
<button title="Tooltip on top" data-placement="top" data-toggle="tooltip" class="btn btn-default mrs" type="button">Tooltip on top</button>
<button title="Tooltip on bottom" data-placement="bottom" data-toggle="tooltip" class="btn btn-default mrs" type="button">Tooltip on bottom</button>
<button title="Tooltip on right" data-placement="right" data-toggle="tooltip" class="btn btn-default mrs" type="button">Tooltip on right</button>
<p> </p>
<p> </p>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="../../dist/js/vendor/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../../dist/js/flat-ui.min.js"></script>
<script>
$(function () {
$('[data-toggle=tooltip]').tooltip();
});
</script>
</body>
</html>