Skip to content

YThinker/frame-animation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

frame-animation

controllable frame animation.
This package is not published to npm.
Homepage: https://ythinker.github.io/frame-animation/

Usage

Single-line

html

<div class="transform-container">
  <img id="transform" src="./statics/management-icon.png" class="animation-img">
</div>

css

.transform-container{
  width: 103px;
  height: 103px;
  overflow: hidden;
}

.transform-container > .animation-img{
  width: 100%;
  height: auto;
}

js

const transformInstance = new FrameAnimation.SinglelineFrameAnimation(
  document.querySelector("#transform"),
  {
    /** @required */
    totalFrameNumber: 24,
    /** @defaultValue 'vertical' */
    imageDirection: "vertical",
    fillMode: 'both',
    motionDirection: 'alternate',
    /** @defaultValue 60 */
    fps: 1,
  },
  "transform"
);
transformInstance.start();

Multiline

html

<div class="multitransform-container">
  <img id="multitransform" src="./statics/apple-lock-icon.png">
</div>

css

.multitransform-container{
  width: 66px;
  height: 88px;
  overflow: hidden;
  background-color: #000;
}

js

const transformInstance = new FrameAnimation.MultilineFrameAnimation(
  document.querySelector("#multitransform"),
  {
    /** @required */
    totalFrameNumber: 36,
    /** @required */
    columnNumber: 6,
    fps: 10,
  },
  "transform"
)
let type = 'ltr';
transformInstance.start(type)

Releases

No releases published

Packages

No packages published