Put a script on each of the scroll view's children that will change its scale based on the distance from the center of the scroll view. To determine the center of the scroll view, use
Vector3[] corners = panel.localCorners;
Vector3 localCenter = Vector3.Lerp(corners[0], corners[2], 0.5f);