>我有一个图像数组,我正在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);