1.0.0 • Published 6 years ago

react-float-affixed v1.0.0

Weekly downloads
482
License
MIT
Repository
github
Last release
6 years ago

react-float-affixed

Create popup elements that are attached to other elements (such as what you might use to implement a dropdown or menu button).

The popup is created outside of the regular DOM tree but is positioned to remain automatically attached to the element to which you anchor it, automatically switching which edge it is attached to in order to stay on the screen.

Demonstration

Demonstration

Usage:

Preview

<button>
    <span>This is my button</span>
    <FloatAffixed>and this is my popup</FloatAffixed>
</button>

Results in html that looks like this

<button><span>This is my button</span></button>

And html elsewhere that looks like this:

<div>and this is my popup</div>

Advanced

More advanced usage, here's an example that shows the popup when the button is clicked

Show and hide a popup

<div>
    <input type="checkbox" checked={this.state.on} onClick={()=>this.setState({on:!this.state.on})}/>
    <label>This is my checkbox</label>
    {this.state.on &&
        <FloatAffixed>This is my popup</FloatAffixed>
    }
</div>

Specify valid attachment edges

<FloatAffixed attachments="over,under">...</FloatAffixed>

Note: edges are tried in the order specified

1.0.0

6 years ago

0.1.11

6 years ago

0.1.10

6 years ago

0.1.9

6 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3-b

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago