i'm amazing with effect from this post. anybody knows how to make using script.aculo.us?
on 2008-06-18 04:38
on 2008-06-18 16:11
Yes. Do you have a specific question? :-)
If you want to know how to accomplish the fade-in/fade-out technique, my
approach would be to have the two forms absolutely positioned inside the
same relative container, and use fade, appear, and parallel to do the
transition:
<div style="position:relative;">
<div id="block1" style="position:absolute;"></div>
<div id="block2" style="position:absolute;"></div>
</div>
<script>
new Effect.Parallel([
new Effect.Fade('block1'),
new Effect.Appear('block2')]);
</script>
Disclaimer: this was typed purely off the top of my head, and comes with
no
guarantee expressed or implied. :-)
-Fred
On Tue, Jun 17, 2008 at 9:38 PM, gmourasilva@gmail.com <
gmourasilva@gmail.com> wrote:
>
> i'm amazing with effect from this post.
>
> anybody knows how to make using script.aculo.us?
--
Science answers questions; philosophy questions answers.