mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
77b78a9389
* Unify name of ReactNode type in document * Lowser all string type name * Lowercase all number type name * Lowercase all boolean type name * Unify array type * Lowercase all object type name * Unify mutilple types
960 B
960 B
category | type | title |
---|---|---|
Components | Navigation | Affix |
Make an element sticky to viewport.
When To Use
When user browses a long web page, some content need to stick to the viewport. This is common for menus and actions.
Please note that Affix should not cover other content on the page, especially when the size of the viewport is small.
API
Property | Description | Type | Default |
---|---|---|---|
offsetTop | Pixels to offset from top when calculating position of scroll | number | 0 |
offsetBottom | Pixels to offset from bottom when calculating position of scroll | number | - |
onChange | Callback when affix state is changed | Function(affixed) | - |
Note: Children of Affix
can not be position: absolute
, but you can set Affix
as position: absolute
:
<Affix style={{ position: 'absolute', top: y, left: x}}>
...
</Affix>