index.html 2.44 KB
Newer Older
1
2
3
4
5
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8
9
    <meta name="description" content="">
    <meta name="author" content="">
10
    <link rel="shortcut icon" href="../../favicon.ico">
11
12
13
14

    <title>Tooltip Viewport Example for Bootstrap</title>

    <!-- Bootstrap core CSS -->
Julian Thilo's avatar
Julian Thilo committed
15
16
17
18
    <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">

    <!-- Custom styles for this template -->
    <link href="tooltip-viewport.css" rel="stylesheet">
19
20
21
22
  </head>

  <body>

23
    <button class="btn btn-secondary pull-xs-right tooltip-bottom" title="This should be shifted to the left">Shift Left</button>
Mark Otto's avatar
Mark Otto committed
24
25
    <button class="btn btn-secondary tooltip-bottom" title="This should be shifted to the right">Shift Right</button>
    <button class="btn btn-secondary tooltip-right" title="This should be shifted down">Shift Down</button>
26

Mark Otto's avatar
Mark Otto committed
27
    <button class="btn btn-secondary tooltip-right btn-bottom" title="This should be shifted up">Shift Up</button>
28
29

    <div class="container-viewport">
Mark Otto's avatar
Mark Otto committed
30
31
      <button class="btn btn-secondary tooltip-viewport-bottom" title="This should be shifted to the left">Shift Left</button>
      <button class="btn btn-secondary tooltip-viewport-right" title="This should be shifted down">Shift Down</button>
32

33
      <button class="btn btn-secondary pull-xs-right tooltip-viewport-bottom" title="This should be shifted to the right">Shift Right</button>
34

Mark Otto's avatar
Mark Otto committed
35
      <button class="btn btn-secondary tooltip-viewport-right btn-bottom" title="This should be shifted up">Shift Up</button>
36
37
    </div>

Julian Thilo's avatar
Julian Thilo committed
38

39
40
41
    <!-- Bootstrap core JavaScript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
XhmikosR's avatar
XhmikosR committed
42
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
XhmikosR's avatar
XhmikosR committed
43
    <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
Julian Thilo's avatar
Julian Thilo committed
44
    <script src="../../dist/js/bootstrap.min.js"></script>
45
    <script src="../../assets/js/vendor/tether.min.js"></script>
46
47
    <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
    <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
Julian Thilo's avatar
Julian Thilo committed
48
    <script src="tooltip-viewport.js"></script>
49
50
  </body>
</html>