在ionic2中,如何滑动到没有动画的索引



>我有一个图像数组,我正在Slide显示第一张图像,现在我想跳到第 n 个位置而不显示第 1 张和第 n 张图像之间的图像。正在发生的事情是,slider非常快速地在 1 和 n 之间滑动所有图像,并带有动画。我想跳过中间的所有图像并直接显示第 n 张图像。

这是我用来转到第 n 个位置的代码。

this.slides.slideTo(this.SelecteduserIndex);

就像您在幻灯片文档中看到的那样,slideTo 方法接受speed(以毫秒为单位的过渡持续时间(作为第二个参数:

> slideTo(index, speed, runCallbacks)
Transition to the specified slide.
Param           Type      Details
index           number    The index number of the slide.
speed           number    Transition duration (in ms). (OPTIONAL)
runCallbacks    boolean   Whether or not to emit the ionSlideWillChange/ionSlideDidChange events. Default true. (OPTIONAL)

因此,您可以使用0作为删除动画的速度,如下所示:

this.slides.slideTo(this.SelecteduserIndex, 0);

工作堆栈闪电战演示。

相关内容

  • 没有找到相关文章

最新更新