Try to move them inside the onReady like this. I made one so just make all like that
$w.onReady(function () {
$w('#servicelist').onViewportEnter( () => {
$w('#dpurple').show('fade');
})
$w('#servicelist').onViewportLeave( () => {
$w('#dpurple').hide('fade');
})
});