There’s no direct Action way to do this, but it’s very simple to do
with Protaculous, the right photography, and a tiny bit of fiddling
with JS and a calculator.
http://scripty.walterdavisstudio.com/layered-slide
All I did was download Apple’s images[1], create a nested set of DIVs
for the images and their parent container (using drag and drop in the
Page pane) and then add two tiny JS functions through Protaculous. The
first one runs before the page is visible (dom:loaded callback):
$('stage').select('div').invoke('setStyle','left:960px');
…and all that does is scoot all three images over to the right far
enough to be invisible. (The parent container, #stage, has its
Overflow attribute set to hidden, so all of its children are cut off
if they’re outside of its bounds.)
The second one runs after the page is completely downloaded (all
images are done loading, everything is in place and ready to move),
which is accessed through the lower of the two Function Body buttons:
$('left').morph('left:-56px');
$('middle').morph('left: 167px');
$('right').morph('left:499px');
I did not do any sort of cleanup to this at all, just relied on the
defaults and the fact that each image had to travel a different
distance within the same time to get the layered reveal effect. If you
have the time, you can set various delay and duration attributes like
this:
$('left').morph('left:-56px',{duration:0.6,delay:0.1});
…to fiddle with the timings and the nature of the effect. These
positions were just what looked good in Freeway; I wrote them down in
the design view, and then translated them into the Protaculous
Function Body window.
Walter
On May 3, 2011, at 11:34 AM, Justin Easthall wrote:
Interesting thanks - I’d love to be able to use this
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options