| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html> <title>Basic Visual Test</title>
- <style>
- @import '/reset.css';
- html,
- body {
- height: 1500px;
- }
- #reference {
- position: absolute;
- top: 550px;
- left: 50px;
- width: 200px;
- height: 200px;
- background-color: red;
- box-shadow: inset 0 0 0 1px black;
- }
- #popper {
- width: 100px;
- height: 300px;
- background-color: rebeccapurple;
- box-shadow: inset 0 0 0 1px black;
- }
- </style>
- <div id="reference">Reference Box</div>
- <div id="popper">Popper Box</div>
- <script type="module">
- import { createPopper } from '../../dist/popper.js';
- const reference = document.querySelector('#reference');
- const popper = document.querySelector('#popper');
- window.instance = createPopper(reference, popper, {
- placement: 'right-start',
- modifiers: [
- {
- name: 'preventOverflow',
- options: {
- rootBoundary: 'document',
- },
- },
- ],
- });
- </script>
|