2017-10-03 18:34:59 +02:00
|
|
|
<!doctype html>
|
2014-01-20 20:54:22 +01:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2015-10-06 13:35:39 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2014-01-20 20:54:22 +01:00
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="author" content="">
|
2017-07-16 15:19:20 +02:00
|
|
|
<link rel="shortcut icon" href="../../../../favicon.ico">
|
2014-01-20 20:54:22 +01:00
|
|
|
|
|
|
|
<title>Tooltip Viewport Example for Bootstrap</title>
|
|
|
|
|
|
|
|
<!-- Bootstrap core CSS -->
|
2018-06-21 06:31:38 +02:00
|
|
|
<link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
|
2014-03-28 12:48:19 +01:00
|
|
|
|
|
|
|
<!-- Custom styles for this template -->
|
|
|
|
<link href="tooltip-viewport.css" rel="stylesheet">
|
2014-01-20 20:54:22 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2017-10-03 03:59:37 +02:00
|
|
|
<button type="button" class="btn btn-secondary float-right tooltip-bottom" title="This should be shifted to the left">Shift Left</button>
|
|
|
|
<button type="button" class="btn btn-secondary tooltip-bottom" title="This should be shifted to the right">Shift Right</button>
|
|
|
|
<button type="button" class="btn btn-secondary tooltip-right" title="This should be shifted down">Shift Down</button>
|
2014-01-20 20:54:22 +01:00
|
|
|
|
2017-10-03 03:59:37 +02:00
|
|
|
<button type="button" class="btn btn-secondary tooltip-right btn-bottom" title="This should be shifted up">Shift Up</button>
|
2014-01-20 20:54:22 +01:00
|
|
|
|
|
|
|
<div class="container-viewport">
|
2017-10-03 03:59:37 +02:00
|
|
|
<button type="button" class="btn btn-secondary tooltip-viewport-bottom" title="This should be shifted to the left">Shift Left</button>
|
|
|
|
<button type="button" class="btn btn-secondary tooltip-viewport-right" title="This should be shifted down">Shift Down</button>
|
2014-01-20 20:54:22 +01:00
|
|
|
|
2017-10-03 03:59:37 +02:00
|
|
|
<button type="button" class="btn btn-secondary float-right tooltip-viewport-bottom" title="This should be shifted to the right">Shift Right</button>
|
2014-01-20 20:54:22 +01:00
|
|
|
|
2017-10-03 03:59:37 +02:00
|
|
|
<button type="button" class="btn btn-secondary tooltip-viewport-right btn-bottom" title="This should be shifted up">Shift Up</button>
|
2014-01-20 20:54:22 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
|
|
================================================== -->
|
|
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
2018-01-23 07:18:33 +01:00
|
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
2018-06-21 06:31:38 +02:00
|
|
|
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
|
2018-09-14 15:09:12 +02:00
|
|
|
<script src="../../dist/js/bootstrap.bundle.min.js"></script>
|
2014-03-28 12:48:19 +01:00
|
|
|
<script src="tooltip-viewport.js"></script>
|
2014-01-20 20:54:22 +01:00
|
|
|
</body>
|
|
|
|
</html>
|