[Slide box] delay between pages & Ion-List

Hi,
I want to create delay when i change page, i tried using slide-interval but doesn’t seem to work.
my condition is swipes disabled and i’m using button to change page and i set does continue =“false”.
how do i accomplish this ?

also, what is the difference using ion-list and using class=“list”?

Thank you

answering my own question
i do this to achieve delay between pages

$scope.next = function(){
	$timeout(function() {
		$ionicSlideBoxDelegate.next();	
	}, 2000);
}

i wonder if that was the best way to do this