Skip to content

Support to multiple tagVisor animation scripts working in parallel  #1

@taboca

Description

@taboca

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions