New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fxjs

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fxjs

A super lightweight, high performance, cross-browser, dependency-free animation library for the modern web.

  • 0.1.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
655
decreased by-37.86%
Maintainers
1
Weekly downloads
 
Created
Source

#Fx.js

A super lightweight, high performance, cross-browser, dependency-free animation library for the modern web.

##Features:

  • Super lightweight: Just 3kb minified
  • High performance: Uses requestAnimationFrame and hardware-accelerated CSS transforms, degrades gracefully in older browsers
  • Cross browser: Tested in Chrome, Safari, Firefox, Opera, iOS, Android, and IE6+
  • Dependency-free: No jQuery, no MooTools, no YUI, no Closure
  • Supports module loaders: CommonJS and AMD

##Usage


var fx = new Fx(DOMElement, property, options);

fx.get();		// get current value of the property
fx.set(value);	// immediately set value
fx.to(value);	// animate to value

##Example


var element = document.getElementById('myElement');
var fx = new Fx(element, 'top', {
	duration: 1000
}).to(100);

##API

  • Fx.element {DOMElement} Returns the element attached to the Fx instance
  • Fx.property {String} Returns the property attached to the Fx instance
  • Fx.get() {Function} Returns the current value of the property attached to the Fx instance
  • Fx.set(value) {Function} Set the Fx instance's value immediately (without animating it)
  • Fx.to(value) {Function} Animate the Fx instance to the given value

##Options

  • duration {Number} The animation duration (in milliseconds)
  • animationStart {Function} Animation start hook
  • animationEnd {Function} Animation end hook
  • transition {Function} Custom relative transition function (takes time since start)
  • unit {String} Units (px, %, em, deg, etc...)

##Supported properties

bottom height left margin margin-bottom margin-left margin-right margin-top opacity padding padding-bottom padding-left padding-right padding-top right rotate scale scale3d top translate translate3d width zoom

###Fx.Scroll

scrollLeft scrollTop

##To do:

  • Unit tests
  • Support for transitioning multiple properties
  • Support for CSS class transitions

FAQs

Package last updated on 15 Feb 2013

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