Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fween

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fween

Fween animates things

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Fween

Fween tweens things - object properties, function calls, HTML element styles.

It is a TypeScript project that builds into a JavaScript library.

Its main concept is simplicity. Its syntax uses a chained/stream methodology to construct sequences.

It is experimental, and under early development.

Syntax

With a getter/setter function pair:

Fween.use(getterFunc, setterFunc)
    .from(value) // Optional: set the starting value
    .to(value, durationSeconds = 0, transitionFunction = Easing.none)

With an arbitrary object:

Fween.use(obj)
    .todo

All Fween instances also include some common methods:

Fween.use(...)
    .play()
    .pause()
    .call(function)
    .wait(seconds)

Examples

A getter/setter animation, smooth scrolling in 1 second and then calling a function:

Fween.use(getScrollY, setScrollY).to(0, 1, Easing.expoOut).call(completeCallback).play();

function getScrollY() {
    return window.scrollY;
}
function setScrollY(value) {
    window.scrollTo(0, value);
}
function completeCallback() {
    console.log("Smooth scroll ended.");
}

Todo

Fween.use(obj)
	.to({x: value}, 1, Easing.expoOut);

Fween.use(element.style)
	.to({top: "valuepx"}, 1, Easing.expoOut);

Fween.use(element)
	.to("background-color: #ffffff", 1, Easing.expoOutString)
	

Keywords

FAQs

Package last updated on 31 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc