You can only control one property with a single expression, but you could do what you’re suggesting with scale. For example, you could have an expressions that eases from 100% to 150% from 1 second to 2 seconds, and then eases from 150% to 80% from 2 seconds to 3 seconds like this
if (time < 2)
s = ease(time,1,2,100,150)
else
s = ease(time,2,3,150,80);
[s,s]
Instead of hard-coding the times into the expression, you could control them with sliders, markers, or keyframes. You’d need to pin it down more to get more specific…