index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  7. <link rel="stylesheet" href="../resources/css/base.css" />
  8. <link rel="stylesheet" href="../common/css/style.css" />
  9. <style>
  10. .tether-element.tether-out-of-bounds {
  11. display: none;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div class="instructions">Resize the screen to see the tethered element disappear when it can't fit.</div>
  17. <div class="element"></div>
  18. <div class="target"></div>
  19. <script src="//github.hubspot.com/tether/dist/js/tether.js"></script>
  20. <script>
  21. new Tether({
  22. element: '.element',
  23. target: '.target',
  24. attachment: 'top left',
  25. targetAttachment: 'top right',
  26. constraints: [{
  27. to: 'window',
  28. attachment: 'together'
  29. }]
  30. });
  31. </script>
  32. </body>
  33. </html>