-
Advanced Itunes type scroller/spinner
All right, I’ve been racking my brain with this one all day and most of the night and I’m hoping some you geniuses can help me out. I’ve got the basic itunes-esque scroller down from the other posts using these two bad boys here, hooked to a slider. This is cool, but I’d like to do two other things with this. The first thing is make the opacity higher in center and lower on both edges. Some sort of range I’m assuming. Like 90% in the center lowering out to 20 on the edges. Salt to taste.
The second thing I’d like to be able to change is instead of images just going right down left or right on the x axis, I’d like to have a more rounded approach, like being attached 360 degrees around in a circle more like a rolodex tipped on its side. The opacity on the back half would be very low, working back 90 to 100 percent on the front, in the middle when the solid opens up flat.
Here’s what I’ve been working with. Any help is much appreciated. Thanks in advance.
Position expressionx=comp(“REFLECT_COMP”).layer(“Null 1”).effect(“Slider Control”)(“Slider”) + 500;
range=300; //range when Z begins
center=thisComp.width*0.5; //center of comp on X axis
distance=x-center;
Zdist=400;if (x <= center ){ Zpos=ease(center+distance,center-range,center,value[2],value[2]-Zdist); }else{ Zpos=ease(center+distance,center,center+range,value[2]-Zdist,value[2]); } [x,value[1],Zpos] ----------------------------------------- Y rotation exoression range=180; //range when rotation begins center=thisComp.width*0.5; //center of comp on X axis distance=position[0]-center; angle=ease(center+distance,center+range,center-range,-70,70); [angle]