GithubHelp home page GithubHelp logo

group_effect's Introduction

GroupEffect Explainer

Introduction

Animation sequencing is a common technique that allows creation of complex animated effects where multiple effects (potentially on multiple targets) are animated together as a group.

There is currently a draft proposal to include some form of sequencing in Web Animations Level 2 Specification. The proposal introduces a GroupEffect which is a type of AnimationEffect that contains an ordered sequence of other animation effects a.k.a children effects.

In the explainer we are proposing a few changes to this model with the objective to introduce flexibility and customizability. Furthermore we propose adding a new sequencing model “stagger”. The altered design introduces a different hierarchy of group effect: An abstract group effect representing the grouping, and concrete sub-types that define different possible mapping of time from the parent to children.

Motivations

Grouping is a powerful mechanism that allows creation of complex tree structures by hiding the complexity inside the group. Note that for this to work well the group should hide its inner working and expose a common API. This is a valuable primitive that allows scaling animations to complex sequences and it is a common technique supported by popular animation libraries and tools.

Why adding this to web animations

With current level-1 web animations specification, to create a coordinated sequence of animations a web developer has to create multiple animations and each of them is associated with only one effect and target.

This can work but suboptimal for the following reasons.

  • Ergonomics:
    • Developer has to manually compute and maintain timing of various sub-animations.
      • The dependency between effects (e.g., B starts after A or in the middle of it) has to be manually maintained. For example changing the duration of A needs to change the start time of B which needs recalculation and it can be extremely complex in certain cases. It is is easier for browser to maintain and auto update them.
    • No common playback controls for group i.e., each animation must be played/cancelled individually which means more tracking on the web developers part.
    • It is not easy to synchronize the starting of the animation since play is asynchronous.
    • With group effect one can create complex iterated animations (using features such as “playback-direction: alternative” etc.) that involve multiple elements. These are difficult to do correctly without GroupEffect.
  • Efficiency: Maintaining a list of animations is costly. Further, with GroupEffect browsers can take a whole tree of effects and turn it into a more closed form that is efficient.

Example

Consider this sequence where two elements are animated and then reversed. Figure 1 A possible implementation without grouping can be done this way:

// Without GroupEffect
var effect_a = new KeyframeEffect(
    target_a, [{ opacity: 0, offset: 0},
               { opacity: 1, offset: 0.5},
               { opacity: 1, offset: 1}], {
    duration: 200, iterations: 2, direction: 'alternate'});

var effect_b = new KeyframeEffect(
    target_b, { opacity: [0, 1] }, {
    duration: 200, iterations: 2, direction: 'alternate' });

var animation_a = new Animation(effect_a, document.timeline);
var animation_b = new Animation(effect_b, document.timeline);
animation_a.play();
animation_b.play();

There are several drawbacks in the example above:

  • Extra effort regarding setting the keyframe offset of effect_a to create desired effect.
  • effect_a is better described as a 100ms effect with two keyframes and fill: ‘forwards’ but now has to be an effect with duration 200ms with three keyframes.
  • When it comes to multiple effects, developers have to coordinate all the effects with multiple animations manually.
  • There are also two animations that need to be played and cancelled if needed.

With grouping the code can be described more naturally as:

// With GroupEffect the effects don't need to have exact durations.
var effect_a = new KeyframeEffect(
    target_a, { opacity: [0, 1] }, {duration: 100, fill: 'forwards' });

var effect_b = new KeyframeEffect(
    target_b, { opacity: [0, 1] }, {duration: 200});

var parallel_effect = new ParallelEffect([effect_a, effect_b],
    {iterations: 2, direction: 'alternate'});

var animation = new Animation(parallel_effect, document.timeline);
animation.play()

Deviation from existing design in Level-2

The key insight of the current design is to allow grouping of the animation effects. We believe this is the right choice but propose some changes in the hierarchy of classes.

In the current design the base class (GroupEffect) comes with a default time mapping from the group time to the child. This default choice is parallel. i.e. children have the same start time as the group. Then there is a special group effect: sequence effects which overrides the time mapping to arranges the start time of the children effects in a way that they start in turn.

We propose to separate the concepts of “group of effects” from “time mapping” thus making it more natural to later add grouping with custom time mappings. In this design the base class, GroupEffect, has no time mapping and cannot be directly constructed. Instead, concrete subclasses (SequenceEffect, ParallelEffect, StaggerEffect) have time mappings. In particular, in future AnimationWorklet can be used to allow a special WorkletGroupEffect whose time can be mapped to its children in any fashion.

Also, the existing spec only speculates two different scheduling models (i.e. parallel, sequence) and we believe stagger is a nice addition. With polyfill, a nice animation is created using StaggerEffect. See more examples of stagger in popular frameworks.

Proposed Design

Figure 2 GroupEffect: an abstract class that contains an ordered list of “child effects” but not time mapping from parent to children and not intrinsic iteration duration. There are some concrete subclasses which have a specific time mapping model. These models determine

  1. the intrinsic iteration duration of the group
  2. how group inherited time maps to a child inherited time.

Note that the basic supported types map have a simple time shift model which addresses most common use cases.

  • ParallelEffect:
    • Mapping: No shift, all children start at the same time.
    • Intrinsic duration: Max duration of children
  • SequenceEffect:
    • Mapping: each child starts after another (note that ordering is important)
    • Intrinsic duration: Sum duration of children
  • StaggerEffect:
    • Mapping: each child starts after a time delay depending on the stagger config
    • Intrinsic duration: Max(f(stagger_delay) + duration of child(i))

Notes:

  • Since a child time is determined by its parent. It is not allowed to set the localTime of a child directly.
  • This model is more expandable and more interesting grouping mechanisms can be introduced in the future. e.g. this is usable in AnimationWorklet to allow creation of interesting new Groupings.
  • Does not allow cycles, i.e., a group effect cannot be its own descendent. Figure 3
  • The children are contained inside the parent.
  • Since individual animation effects have mutable timings (AnimationEffect.duration) then the group effect timings are mutable as well.

Design Constraints

  • We should be able to use this inside AnimationWorklet where we allow animation worklet to create custom sequencing models.
  • GroupEffect is a “compositing mechanism” thus it should have a common interface between group nodes and the leaf node (i.e., AnimationEffect)
  • Should the group-start delay be immutable? What if we change the timing model of children in the group (e.g., increase the duration) will that cause the local time of the subsequence effects to change.
  • What’s our answer to the current timing functions issues?
    • Issue 4: overflow
    • Issue 5: non-linear

Examples

Note that the proposed GroupEffect is for Web Animation. The following examples are implemented using AnimationWorklet just to showcase how GroupEffect should be used.

An example of using GroupEffect to animate stagger effects with AnimationWorklet.

Figure 4

// Inside AnimationWorkletGlobalScope.
<script id="passthrough"  type="text/worklet">
registerAnimator("test_animator", class {
  animate(currentTime, effect) {
    let effects = effect.getChildren();
    for (var i = 0; i < effects.length; ++i)
      effects[i].localTime = currentTime;
  }
});
</script>

// In document scope.
// For simplicity, all the single keyframe effects are the same.
function SingleEffect(target) {
  return new KeyframeEffect(target,
      [
         { transform: 'scale(1.3) translateX(-400px) translateY(300px) rotate(360deg)',
           opacity: 1 }
      ], {
        duration: 500,
        fill: 'forwards'
      }
  );
}

function AnotherEffect(target) {
  return new KeyframeEffect(target,
      [
         { transform: 'scale(1) translateX(-400px) translateY(-300px) rotate(0deg)',
           opacity: 0 }
      ], {
        duration: 500,
        delay: 500,
        fill: 'forwards'
      }
  );
}

// Converts the input text to multiple effects. Each effect is defined by the
// same KeyframeEffect function.
function Effects(text) {
  var effects = [];
  var wrapper = document.getElementById('wrapper');
  text.split('').forEach(function(c) {
    var div = document.createElement('div');
    div.textContent = c;
    div.setAttribute('class', 'box');
    wrapper.appendChild(div);
    effects.push(SingleEffect(div));
  });

  var children = wrapper.children;
  for (var i = 0; i< children.length; ++i) {
    effects.push(AnotherEffect(children[i]));
  }
  return effects;
}

function runInAnimationWorklet(code) {
  return CSS.animationWorklet.addModule(
    URL.createObjectURL(new Blob([code], {type: 'text/javascript'}))
  );
}

runInAnimationWorklet(
  document.getElementById('passthrough').textContent
).then(()=>{

  var stagger_options = {
    delay: 0.2,        // time gap between two KeyframeEffects
    emanation: 0,      // index of emanative KeyframeEffect
    timing: 'linear',  // function that distributes the start time of each KeyframeEffect
  };
    
  var stagger_effect =
      new StaggerEffect(Effects('stagger effect'),
          {delay: 1000},
          stagger_options);
  var animation = new WorkletAnimation('test_animator', stagger_effect);

  animation.play();
});

An example of using GroupEffect to animate two correlated effects with AnimationWorklet.

Figure 5

// Inside AnimationWorkletGlobalScope.
registerAnimator("test_animator", class {
    constructor(options, state = { hold_time : 0 }) {
      this.hold_time = state.hold_time;
    }
    animate(currentTime, effect) { 
      let effects = effect.getChildren();
      if (currentTime <= effects[0].getTiming().duration * 0.3) {
        effects[0].localTime = currentTime;
        effects[1].localTime = 0;
        this.hold_time = effects[0].localTime;
      } else if (currentTime <= effects[0].getTiming().duration * 0.6) {
        effects[0].localTime = this.hold_time;
        effects[1].localTime = currentTime - this.hold_time;
      } else {
        effects[0].localTime = currentTime - this.hold_time;
        effects[1].localTime = currentTime - this.hold_time;
      }
    }
    state() {
      return {
        hold_time : this.hold_time
      };
    }
});

// In document scope.
let effect_a = new KeyframeEffect(
    target,
    [{ height: '100px' }, { height: '200px' }],
    { duration: 2000 }
);

let effect_b = new KeyframeEffect(
    target,
    [{width: '100px' }, {width: '200px' }],
    { duration: 2000 }
);

var exclusive_effect = new ParallelEffect([effect_a, effect_b], {fill: 'forwards'});

let animation = new WorkletAnimation('test_animator', exclusive_effect);
animation.play();

Appendix

Relevant information and use cases

group_effect's People

Contributors

yi-gu avatar

Stargazers

 avatar

group_effect's Issues

CSS syntax

Based on the explainer, a possible syntax could be:

@group_effect my_group {
  type: sequence;
  duration: 100ms;
}
@keyframe child1 {
  group: my_group;
  0% {
    top: 0;
  100% {
    top: 100px;
}
@keyframe child2{
  group: my_group;
  0% {
    top: 100px;
  100% {
    top: 200px;
}

The problem is that the timing information is not specified in @keyframe.
An alternative solution would be having lists of keyframes and timings in the div description.

TAG review

Creating this issue so that we file a TAG review request as soon as we are happy with the explainer. TAG only requires an explainer and their review takes a while usually so the sooner the better. :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.