UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

37 lines (36 loc) 938 B
/** * DevExtreme (esm/__internal/ui/multi_view/m_multi_view.animation.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import { fx } from "../../../common/core/animation"; import { move } from "../../../common/core/animation/translator"; export const _translator = { move($element, position) { move($element, { left: position }) } }; export const animation = { moveTo($element, position, duration, completeAction) { fx.animate($element, { type: "slide", to: { left: position }, duration: duration, complete: completeAction }) }, complete($element) { fx.stop($element, true) } };