swor...@gmail.com schrieb:
> Could an animation be created where a simply ul list (of images, as an
> example) slowly move across a div? Would be a fantastic concept for a
> photo gallery or nav menus, etc.
This is possible.
<div id="container">
<ul id=list">
... many <li>s with images
</ul>
</div>
Think of styling all elements correctly with CSS first: The container
must have overflow: hidden, correct size and position relative/
absolute/fixed. The list must be positioned absolute.
And now the script:
new Run({
elements: 'list',
style: {
left: '-500px'
},
// other options
});
This example moves the list from right to left so you see the images
from left to right. If you want a complete solution ask me again ;) I
haven't testet this yet ...
MfG
Andi