• Stars
    star
    134
  • Rank 270,967 (Top 6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 7 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Rich & adaptive animations for apps using Turbolinks

Turbolinks Animate

NPM Version Travis

A dead simple & powerful way of adding rich & adaptive animations to your app which is already using Turbolinks™.

Extensions


Table of Contents


Usage

Functions

// Shows the initialized element
TurbolinksAnimate.appear();

// Hides the initialized element
TurbolinksAnimate.disappear();

Options

There are a number of ways in which you can adopt Turbolinks Animate to your needs:

Animations:

The vital part is choosing an animation to play. Turbolinks Animate utilizes Animate.css to power them. These are the animations which are currently accessible:

Full list of animations
  • fadeIn
  • fadeInUp
  • fadeInDown
  • fadeInRight
  • fadeInLeft
  • fadeInUpBig
  • fadeInDownBig
  • fadeInRightBig
  • fadeInLeftBig
  • fadeOut
  • fadeOutUp
  • fadeOutDown
  • fadeOutRight
  • fadeOutLeft
  • fadeOutUpBig
  • fadeOutDownBig
  • fadeOutRightBig
  • fadeOutLeftBig
  • bounceIn
  • bounceInUp
  • bounceInDown
  • bounceInRight
  • bounceInLeft
  • bounceOut
  • bounceOutUp
  • bounceOutDown
  • bounceOutRight
  • bounceOutLeft
  • flipInX
  • flipInY
  • flipOutX
  • flipOutY
  • lightSpeedIn
  • lightSpeedOut
  • rotateIn
  • rotateInDownLeft
  • rotateInDownRight
  • rotateInUpRight
  • rotateInUpLeft
  • rotateOut
  • rotateOutDownLeft
  • rotateOutDownRight
  • rotateOutUpRight
  • rotateOutUpLeft
  • rollIn
  • rollOut
  • zoomIn
  • zoomInUp
  • zoomInDown
  • zoomInRight
  • zoomInLeft
  • zoomOut
  • zoomOutUp
  • zoomOutDown
  • zoomOutRight
  • zoomOutLeft
  • slideInUp
  • slideInDown
  • slideInRight
  • slideInLeft
  • slideOutUp
  • slideOutDown
  • slideOutRight
  • slideOutLeft

There are three ways in which you can specify the animation you want to use. To choose a globally used animation pass an option when initializing Turbolinks Animate:

TurbolinksAnimate.init({animation: 'fadeinright'});

Note: The option falls back to fadein.

Note: As a global choice you would only want to use appearing animations, as they will get fade out automatically when the current view disappears.

For alternate approaches take a look at inline animations and animations overriding animations.

Options:

  • duration CSS value for animation-duration. Accepts a string. Defaults to 0.3s.

  • delay Milliseconds after which animation starts. Accepts an integer or false. Defaults to false.

  • reversedDisappearing Whether or not a reversed animation should be used when disappearing. Accepts a boolean. Defaults to false.

  • breakpoints An array of breakpoint objects to specify breakpoints used for Per Device-Type animations. Accepts an array. Defaults to: [{ name: 'mobile', width: 500 },{ name: 'tablet', width: 1024 },{ name: 'desktop', width: 1440 }]

  • customListeners Restore the behavior of versions < 2 to set custom listeners to run appear() and disappear() functions. Accepts a boolean. Defaults to false.

Example:

TurbolinksAnimate.init({animation: 'fadeinright', duration: '1s', delay: 1000});

Inline animations

With Turbolinks Animate you are able to set animations based on the links, who got clicked:

<a href="" data-turbolinks-animate-animation="fadeout" data-turbolinks-animate-duration="0.3s" data-turbolinks-animate-delay="250">I am a link!</a>

Attributes:

  • data-turbolinks-animate-animation Animation to be applied when disappearing after a hyperlink got clicked. Accepts a string. Set it to 'false' to disable Turbolinks Animate on this specific link.

  • data-turbolinks-animate-appear Animation to be applied when appearing on the next view after a hyperlink got clicked. Accepts a string.

  • data-turbolinks-animate-duration CSS value for animation-duration. Accepts a string.

  • data-turbolinks-animate-delay Milliseconds after which animation starts. Accepts an integer or false.

Per Device-Type

In addition you can specify animations specifically for certain screen sizes, just pass a hash:

TurbolinksAnimate.init({animation: {'mobile': 'fadeinup', 'tablet': 'fadeindown', 'desktop': 'fadein'}});

Note: You can customize the breakpoints through the options.

Overriding animations

A lot of times with frameworks like Ruby on Rails you want to be able to specify animations from within your controllers and views without nasty javascript nesting.

With Turbolinks Animate you can just add a data attribute to your initialized element, naming the animation you want to use. It will override the global default:

<body data-turbolinks-animate-animation="fadeinup"></body>

Persistent elements

A lot of times you want to persist certain elements throughout requests, for example a navigation bar or other parts of your layout that is being shared between views. Turbolinks Animate makes it dead simple to declare persistent elements in your view:

<body data-turbolinks-animate-animation="fadein">
  <h1 data-turbolinks-animate-persist="true">My app</h1>
  <p>This is specific to my view!</p>
</body>

Note: Elements don't actually persist, the get replaced by the fetched page just like any other element. But because no animation gets applied, they look just as if the persist (as long as the newly fetched page includes the exact same element in the same position).

Setting data-turbolinks-animate-persist to true will result in the entire element (including its children) being excluded from the applied animations. If you want to apply the animations to children of the persistent element, but still keep it untouched, append -itself to the data attribute. This is especially useful, when you apply a background color to your element, which remains the same, but changes it contents:

<body data-turbolinks-animate-animation="fadein">
  <nav data-turbolinks-animate-persist-itself="true" style="background: black;">
    <h1 style="color: white;">View specific title</h1>
  </nav>
  <p>This is specific to my view!</p>
</body>

Animation types

Often your permanent elements depend on the hyperlink clicked. Just specify the animation type on the hyperlink tag, and replace true with the chosen type on the persistent element:

<body data-turbolinks-animate-animation="fadein">
  <nav data-turbolinks-animate-persist-itself="nav" style="background: black;">
    <h1 style="color: white;">View specific title</h1>
  </nav>
  <a href="/do" data-turbolinks-animate-type="nav">Persist navigation!</a>
  <a href="/doo">Don't persist navigation!</a>
</body>

Element transitions

In a lot of cases it can be useful to apply custom CSS transitions to specific elements when the page changes. This works especially well with background colors of persisted elements, but can be used for any CSS property on any element. Multiple properties can be transitioned using using comma separated values.

<header data-turbolinks-animate-persist-itself="true" data-turbolinks-animate-transition="background-color,opacity">
  <!-- ... -->
</header>
header {
  transition: 0.25s background-color ease-out;
}

#page1 header {
  background-color: blue;
}

#page2 header {
  background-color: red;
}

When you have a third page, which doesn't contain a header element, the page transition performs normally as this method only applies when Turbolinks Animate can find a matching element on the new page.

Important: Unless you only use this data attribute for elements that can be distinguished by their HTML tag, you have to declare an id.

Events

Turbolinks Animate emits events that allow you to track the animation lifecycle. Turbolinks Animate fires events on the document object.

  • turbolinks:animation-start fires when an animation starts. The main Turbolinks Animate element can be accessed with event.data.element. Access the animation with event.data.animation. Access whether content appears or disappears with event.data.disappearing.

  • turbolinks:animation-end fires when an animation ends. The main Turbolinks Animate element can be accessed with event.data.element. Access whether content appeared or disappeared with event.data.disappearing.


Testing

  1. Fork this repository

  2. Clone your forked git locally

  3. Install dependencies

    $ yarn install

  4. Run ESLint

    $ yarn eslint


Release

  1. Review breaking changes and deprecations in CHANGELOG.md.
  2. Change the version in package.json.
  3. Reset CHANGELOG.md.
  4. Create a pull request to merge the changes into master.
  5. After the pull request was merged, create a new release listing the breaking changes and commits on master since the last release.
  6. The release workflow will publish the package to NPM and GPR.

To Do

We use GitHub projects to coordinate the work on this project.

To propose your ideas, initiate the discussion by adding a new issue.


Contributing

We hope that you will consider contributing to Turbolinks Animate. Please read this short overview for some information about how to get started:

Learn more about contributing to this repository, Code of Conduct

Semantic Versioning

Turbolinks Animate follows Semantic Versioning 2.0 as defined at http://semver.org.

More Repositories

1

acts_as_favoritor

Adds Favorite, Follow, Vote, etc. functionality to ActiveRecord models
Ruby
346
star
2

notifications-rails

A flexible notification library supporting the delivery to external services, rendering in various environments, and user configuration by category.
Ruby
242
star
3

pwa

Progressive Web Apps for Rails
Ruby
144
star
4

pubtex

Publicly host LaTeX files on GitHub Pages
18
star
5

turbolinks-animate-rails

Rich & adaptive animations for apps using Rails with Turbolinks
Ruby
13
star
6

amp-html

Reliable high-⚡ apps across devices and distribution platforms with AMP & Rails.
Ruby
6
star
7

omniauth-paypal-oauth2

OAuth2 strategy for PayPal
Ruby
6
star
8

plaain

A serverless web app to organize and stream media from anywhere.
TypeScript
5
star
9

onsignal-rails

OneSignal API wrapper simplifying user targeted cross platform notifications
Ruby
5
star
10

onsignal

OneSignal API wrapper simplifying user targeted cross platform notifications
JavaScript
4
star
11

themer

Themes for Rails apps
Ruby
3
star
12

soco

Algorithms for Smoothed Online Convex Optimization
Jupyter Notebook
2
star
13

teaching-fpv-rev

Functional Programming and Verification revision course
TeX
2
star
14

modalist

A powerful & (really) lightweight asynchronous modal plugin
JavaScript
2
star
15

myg-rails

Myg on Rails
Ruby
2
star
16

ahoy-views

Track views of ActiveRecord objects in Rails
Ruby
2
star
17

pubtex-action

A GitHub action to publicly host LaTeX files on GitHub Pages
Shell
2
star
18

blurry.js

Blurry image loading with StackBlur
JavaScript
2
star
19

sandboxy

Virtual data-oriented environments for Rails
Ruby
2
star
20

tip-the-world-cup

Tip the 2018 World Cup with friends & family
Ruby
2
star
21

graph-algorithms-and-optimization

TeX
1
star
22

transductive-active-learning

Transductive Active Learning with Application to Safe Bayesian Optimization
Python
1
star
23

teaching-dwt-rev

Discrete Probability Theory revision course
TeX
1
star
24

learning-halfspaces-with-massart-noise

Implementation of "Distribution-Independent PAC Learning of Halfspaces with Massart Noise"
Jupyter Notebook
1
star
25

mozaic

An opinionated layout engine for Rails
Ruby
1
star
26

myg

An opinionated & modular state-of-the-web framework
CSS
1
star
27

r404

Error handler & renderer for Rails
Ruby
1
star
28

vscode-cyp

VS Code syntax highlighting for cyp
1
star
29

material-components-web

Provides a set of helpers simplifying the use of the Material Components Web library
Ruby
1
star
30

lovasz-local-lemma-deterministic-algorithms

Talk on Deterministic Algorithms for the Lovász Local Lemma
TeX
1
star
31

algorithms-lab

Solutions for the problems posed during the Algorithms Lab of 2021 at ETH Zurich.
C++
1
star
32

cancancan-system

Conventions & helpers simplifying the use of CanCanCan in complex Rails applications
Ruby
1
star
33

teaching-theo

Theoretical Computer Science teaching materials
TeX
1
star