Git Product home page Git Product logo

repaintless's Introduction

Repaintless.css - making animations fast

CDNJS

Repaintless.css in a lightweight animation library that consists only of animations that don't cause reflows and repaints of a website when used correctly. The idea for a library came after seeing the talk by Paul Lewis on animations and FLIP technique. Basic idea is to remove transition from element, not to apply it while animating. It saves user a tiny lag before animation starts and feels super smooth. To understand the concept better you can read a blog post on that or at least this quote from the post:

The reason you can afford to do this relatively expensive precalculation is because there is a window of 100ms after someone interacts with your site where you’re able to do work without them noticing. If you’re inside that window users will feel like the site responded instantly! It’s only when things are moving that you need to maintain 60fps.

Demo

There is a demo page for the library.

Download

Download repaintless.css file from repaintless-css directory and include in website's head section:

<head>
  <link href="path-to-css-directory/repaintless.css" rel="stylesheet"></link>
</head>

You can also get it by npm:

$ npm install repaintless

Or by Bower:

$ bower install repaintless

How to use

All you need to do is add class "element-animated" and the second class with chosen animation name, eg.:

<div class="element-animated tremble"> I tremble! </div>

Default timing of an animation is one second. You can have an animation that has 0.5s by adding class "short" or 2s animation by adding class "long". Also, you can make it infinite by adding "infinite" class. See how these work:

<div class="element-animated slide-from-top short"> I am quick! </div>

<div class="element-animated slide-from-top long"> I am slooow... </div>

<div class="element-animated slide-from-top infinite"> I will do that forever to drive you crazy! </div>

Customization

For now there is no gulp task for that. To get few out of all animations you need to edit repaintless.scss file and leave there @import declarations for wanted animations only. After that use gulp build task to create css file.

You can also easily change the offset value for animated elements. Each animation has its own scss variable in the same file, right at the top. Names always follow the key $animation-name-offset: value;

List of animations

All possible animations are listed here. Some of them are looped by default and it is always mentioned next to the name. Hopefully the list of animations will get longer and longer.

  • slide-from-top
  • slide-from-bottom
  • slide-from-left
  • slide-from-right
  • slide-from-right-bottom
  • slide-from-right-top
  • slide-from-left-bottom
  • slide-from-left-top
  • slide-top-bottom (looped)
  • slide-left-right (looped)
  • tremble (looped)
  • fade-in
  • fade-out
  • pulsate (looped)
  • rotate
  • rotate-slide-from-right
  • rotate-slide-from-left
  • rotate-slide-from-top
  • rotate-slide-from-bottom
  • appear-from-right
  • appear-from-left
  • appear-from-top
  • appear-from-bottom

Changelog

Check what was changed in the newest version in the Changelog.

License

The library is licensed under The MIT License (MIT).

Go to Lunar Logic website to learn more about us and our work.

repaintless's People

Contributors

szynszyliszys avatar boldewyn avatar basiam avatar pvnr0082t avatar

Watchers

 avatar James Cloos avatar  avatar

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.