1

推送新视图时,该视图从左向右滑动。但是导航视图元素(标题、按钮)从右向左滑动。

我想达到与按下后退按钮相同的效果。

这是我用于滑动视图的代码:

            navigationView.animateActiveItem(view, {
                    type: 'slide', 
                    direction: 'right'
                });

            navigationView.push(view);

提前感谢您的帮助。

4

1 回答 1

2

您需要在以下位置设置要使用的动画方向Ext.navigation.View

Ext.create('Ext.navigation.View', {
    fullscreen : true,
    layout: {
        type: 'card',
        animation: {
            type: 'slide',
            direction: 'right'
        }
    }
});

演示

希望这可以帮助

于 2013-02-19T23:05:36.977 回答