UNPKG

zent

Version:

一套前端设计语言和基于React的实现

34 lines (28 loc) 669 B
import createPlacement from './create'; /** * ------------------------------- * | popover | anchor | * |---------| | * --------------------- */ function locate( anchorBoundingBox, containerBoundingBox, contentDimension, options ) { const x = anchorBoundingBox.left - contentDimension.width - options.cushion; const y = anchorBoundingBox.top; return { getCSSStyle() { return { position: 'absolute', left: `${Math.round(x)}px`, top: `${Math.round(y)}px` }; }, name: 'position-left-top' }; } const LeftTop = createPlacement(locate); export default LeftTop;