zent
Version:
一套前端设计语言和基于React的实现
11 lines (10 loc) • 487 B
JavaScript
import createArrowPosition from './create';
var ArrowBottomRightPosition = function (_a) {
var relativeRect = _a.relativeRect, cushion = _a.cushion, contentRect = _a.contentRect;
var left = relativeRect.left, right = relativeRect.right, bottom = relativeRect.bottom;
var middle = (left + right) / 2;
var x = middle - (contentRect.width - 15);
var y = bottom + cushion;
return createArrowPosition(x, y, "bottom-right");
};
export default ArrowBottomRightPosition;