Giter Site home page Giter Site logo

Enhancement: Timeline about anime HOT 4 CLOSED

juliangarnier avatar juliangarnier commented on May 3, 2024 3
Enhancement: Timeline

from anime.

Comments (4)

AlexGalays avatar AlexGalays commented on May 3, 2024 3

If at all, I prefer simple Promise support (just sugar for the complete callback): that should be like a couple lines of code.
Then, chaining can easily be implemented with .then and Promise.all.

I'm here because I find gsap way too bloated so I hope anime remains a small, no cruft animation lib.

from anime.

juliangarnier avatar juliangarnier commented on May 3, 2024 1

@AlexGalays agreed, and Promise is something that I'm currently looking at.

from anime.

SaulDoesCode avatar SaulDoesCode commented on May 3, 2024 1

@tom2strobl chains are implemented in anime-next

 let anims = [anime({
   targets: '.first',
   translateX: '13.5rem',
   autoplay:false,
 }), anime({
   targets: '.second',
   translateX: '13.5rem',
   autoplay:false,
 }), anime({
   targets: '.third',
   translateX: '13.5rem',
   autoplay:false,
 })];

   // anime.chain allows you to
  anime.chain(anims).play();
  // or in es6
  anime.chain(...anims).play();

  let chain = anime.chain(animation1,animation2,animation3);
  // you can add to chains
  chain.add(animation4);
  // and remove from them
  chain.remove(animation1);

  // use chain.Do to apply an action to
  // the animations in the chain
  // chain.Do( event | true , string | function )
  chain.Do('complete','restart');
  // adding true makes actions imediate
  chain.Do(true, anim => {
    // do something to all
    // animations in the chain
  });
  chain.Do(true,'pause');

  // available chain actions are
  chain.play
  chain.pause
  chain.stop
  chain.restart
  // use chain.Do for anything else

from anime.

PierBover avatar PierBover commented on May 3, 2024

Hey @juliangarnier what's the state of chaining in Anime currently?

Is Promise support being implemented?

from anime.

Related Issues (20)

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.