index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="../resources/css/base.css" />
  5. </head>
  6. <body>
  7. <div class="instructions">Scroll the page</div>
  8. <style>
  9. .instructions {
  10. width: 100%;
  11. text-align: center;
  12. font-size: 24px;
  13. padding: 15px;
  14. background-color: rgba(210, 180, 140, 0.4);
  15. }
  16. * {
  17. box-sizing: border-box;
  18. }
  19. body {
  20. min-height: 1200vh;
  21. height: 100%;
  22. }
  23. .content-box {
  24. width: 600px;
  25. border: 10px solid #999;
  26. height: 600vh;
  27. background-color: #439CCC;
  28. margin: 200vh auto;
  29. }
  30. .element {
  31. border: 10px solid #999;
  32. background-color: #FFDC00;
  33. width: 300px;
  34. height: 200px;
  35. padding: 0 15px;
  36. font-size: 20px;
  37. font-weight: bold;
  38. }
  39. </style>
  40. <div class="content-box">
  41. <div class="element">
  42. <p>This is some sort of crazy dialog.</p>
  43. <p>It's setup to align with the center of the visible part of the blue area.</p>
  44. </div>
  45. </div>
  46. <script src="//github.hubspot.com/tether/dist/js/tether.js"></script>
  47. <script>
  48. new Tether({
  49. element: '.element',
  50. target: '.content-box',
  51. attachment: 'middle center',
  52. targetAttachment: 'middle center',
  53. targetModifier: 'visible'
  54. });
  55. </script>
  56. </body>
  57. </html>