0.0.6 • Published 4 months ago

theme-shokax-anime v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

theme-shokax-anime

NPM npm npm

anime.js for hexo-theme-shokaX
inspired by anime

Usage

Import

<script src="https://www.unpkg.com/theme-shokax-anime@latest/anime.shokax.min.js"></script>

Basic usage

anime({
  targets: document.getElementById("imgs"),
  duration: 1000,
  easing: "linear",
  delay: 0,
  begin: function () {
    // triggered before the animation begins
  },
  update: function () {
    // triggered when each rAF is called
  },
  complete: function () {
    // triggered after the animation ends
  },
  // properties to be changed in targets
  opacity: 1,
}).play();

Timeline

anime().timeline().add({
    targets: particules,
    duration: anime.random(1200, 1800),
    easing: "easeOutExpo",
    update: renderParticule,
    x: function (p) {
      return p.endPos.x;
    },
    y: function (p) {
      return p.endPos.y;
    },
    radius: 0.1,
  })
  .add({
    targets: circle,
    duration: anime.random(1200, 1800),
    easing: "easeOutExpo",
    update: renderParticule,
    radius: anime.random(80, 160),
    lineWidth: 0,
    alpha: {
      value: 0,
      easing: "linear",
      duration: anime.random(600, 800),
    },
  }).play();

More Examples

anime({
  // support DOM
  // targets: document.getElementById("imgs"),
  // support plain object
  targets: { x: 1, y: 2 },
  // support array
  // targets: [{x: 1, y: 2}, {x: 2, y: 3}, {x: 3, y: 4}]

  // support Infinity duration
  duration: Infinity,

  // support lots of easing
  // easing: "linear",
  // easing: "easeOutExpo",
  // easing: "easeInQuad",
  // ...

  // properties to be changed in targets
  // support from-to mode
  x: [10, 20],
  // support keyframe mode
  x: [
    { value: 10, duration: 200 },
    { value: 20, duration: 400 },
  ],
  // support function
  y: function (item) {
    return item.x;
  },
  // support nest
  x: {
    value: 20, // required
    duration: 200, // required
    easing: "linear",
  },
  // support percentage and px
  // x: '100%',
  // x: '20px',
  // x: ['0%', '100%'],
  //
}).play();

Default Options

const defaultOptions = {
  targets: null,
  duration: Infinity,
  easing: "linear",
  delay: 0,
  begin: null,
  update: null,
  complete: null,
};
0.0.5

4 months ago

0.0.6

4 months ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago