devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
35 lines (34 loc) • 887 B
JavaScript
/**
* DevExtreme (esm/ui/multi_view/ui.multi_view.animation.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import fx from "../../animation/fx";
import {
move
} from "../../animation/translator";
export var _translator = {
move($element, position) {
move($element, {
left: position
})
}
};
export var animation = {
moveTo($element, position, duration, completeAction) {
fx.animate($element, {
type: "slide",
to: {
left: position
},
duration: duration,
complete: completeAction
})
},
complete($element) {
fx.stop($element, true)
}
};