How to use dom-align - 10 common examples

To help you get started, we’ve selected a few dom-align examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github buildkite / frontend / app / components / layout / NavigationDropdown.js View on Github external
alignElements() {
    // Don't bother about aligning the elements if we're not showing the
    // dropdown.
    if(!this.state.showing) {
      return;
    }

    var points = this.props.align == "right" ? [ "tr", "br" ] : [ "tl", "bl" ];
    domAlign(ReactDOM.findDOMNode(this.dropdownNode), ReactDOM.findDOMNode(this.labelNode), { points: points });
  }
github ecomfe / san-mui / src / Popover / Popover.js View on Github external
let transformOrigin = getTransfromOrigin(targetOrigin);

        // 设置缩放动画的起点
        content.style.transformOrigin = transformOrigin;
        content.style.mozTransformOrigin = transformOrigin;
        content.style.msTransformOrigin = transformOrigin;
        content.style.webkitTransformOrigin = transformOrigin;

        content.style.maxHeight = maxHeight == null ? 'auto' : `${maxHeight}px`;
        content.style.overflowY = maxHeight == null ? 'visible' : 'auto';
        content.style.maxWidth = maxWidth == null ? 'auto' : `${maxWidth}px`;
        content.style.overflowX = maxWidth == null ? 'auto' : `${maxWidth}px`;

        // 对齐元素
        align(
            this.el.firstElementChild,
            anchor,
            {
                points: [targetOrigin, anchorOrigin],
                offset: [offsetX, offsetY],
                overflow: {
                    adjustX: true,
                    adjustY: true
                },
                useCssTransform: false
            }
        );

        // 恢复之前的样式
        content.style.transform = cssTransformBackup;
github ecomfe / santd / santd / core / trigger / align.js View on Github external
disabled,
            target,
            align
        } = this.data.get();

        if (!disabled && target) {
            const source = this.el;

            let result;
            const element = getElement(target);
            const point = getPoint(target);

            const activeElement = document.activeElement;

            if (element) {
                result = alignElement(source, element, align);
            }
            else if (point) {
                result = alignPoint(source, point, align);
            }

            restoreFocus(activeElement, source);

            // this.fire('align', {source, result});
        }
    }
    /*template: `
github ecomfe / santd / santd / core / trigger / align.js View on Github external
} = this.data.get();

        if (!disabled && target) {
            const source = this.el;

            let result;
            const element = getElement(target);
            const point = getPoint(target);

            const activeElement = document.activeElement;

            if (element) {
                result = alignElement(source, element, align);
            }
            else if (point) {
                result = alignPoint(source, point, align);
            }

            restoreFocus(activeElement, source);

            // this.fire('align', {source, result});
        }
    }
    /*template: `
github yiminghe / dom-align / examples / shadow-dom.js View on Github external
align() {
    const ret = domAlign(this.refs.source, this.refs.target, {
      points: ['bl', 'bl'],
      overflow: {
        adjustY: 1,
      },
    });
    console.log(ret);
  }
github react-melon / melon / src / Menu.js View on Github external
componentDidUpdate() {

        let {main, layer} = this;

        if (main && layer) {

            let {anchorAlignment, layerAlignment} = this.props;

            align(
                layer,
                main,
                {
                    points: [layerAlignment, anchorAlignment],
                    overflow: {
                        adjustX: true,
                        adjustY: true
                    }
                }
            );

        }

    }
github react-melon / melon / src / Popover.js View on Github external
alignLayerToAnchor(layer, anchor) {

        let {
            anchorAlignment,
            layerAlignment,
            anchorOffset,
            layerOffset
        } = this.props;

        let transform = layer.style.transform;

        layer.style.transform = '';

        align(
            layer,
            anchor,
            {
                points: [anchorAlignment, layerAlignment],
                overflow: {
                    adjustX: true,
                    adjustY: true
                },
                offset: layerOffset,
                anchorOffset: anchorOffset
            }
        );

        layer.style.transform = transform;

    }
github ecomfe / santd / santd / s-trigger / trigger.js View on Github external
forceAlign(source, target, align) {
        const element = getElement(target);
        const point = getPoint(target);
        let result;
        if (element) {
            if (source.style.visibility === '') {
                source.style.visibility = 'hidden';
            }
            result = alignElement(source, element, align);
        } else if (point) {
            result = alignPoint(source, point, align);
        }
    },
    updateDropdownMenu() {
github ecomfe / santd / src / core / trigger / popupInner.js View on Github external
forceAlign() {
        const {
            disabled,
            target,
            align
        } = this.data.get();

        if (!disabled && target) {
            if (target instanceof window.HTMLElement) {
                alignElement(this.el, target, align);
            }
            else if (target && typeof target === 'object') {
                alignPoint(this.el, target, align);
            }

            restoreFocus(document.activeElement, this.el);
        }
    },

dom-align

Align DOM Node Flexibly

MIT
Latest version published 1 year ago

Package Health Score

74 / 100
Full package analysis