Get top Page IDs from menu and cycle through their child pages on a scroller

Instead of a single parent page,

'post_parent' => 17,

in the WP_Query params, you can specify an array of parent pages

'post_parent__in' => ['17', '18', '19'],
'orderby' => 'post_parent title',