-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Right now tagVisor can only execute one animated sequence per HTML document. Since tagVisor works with iframes, for example dispatching animation operations inside any iframe, it makes sense for the infra-structure to have parallel animations support. A high level specification would be:
<ul data-target='iframe1'>
<li data-target='div1' data-effect='scalefit' data-duration='3s' data-time='1s' />
<li data-target='div2' data-effect='scalefit' data-duration='3s' data-time='1s' />
</div>
<ul data-target='iframe2'>
<li data-target='div1' data-effect='scalefit' data-duration='3s' data-time='1s' />
<li data-target='div2' data-effect='scalefit' data-duration='3s' data-time='1s' />
</div>
Where main HTML doc is:
<html>
<body>
<iframe id='frame1' src='page.html'></iframe>
<iframe id='frame1' src='page.html'></iframe>
</body>
</html>
Metadata
Metadata
Assignees
Labels
No labels