Skip to content

Commit

Permalink
Merge branch 'master' of github.com:720kb/angular-fx
Browse files Browse the repository at this point in the history
  • Loading branch information
45kb committed Jul 25, 2015
2 parents 2f8f978 + ee0bd5a commit 820fe77
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,24 @@ ngfx-tada

ngfx-wobble

ngfx-jello

ngfx-slide-in-up

ngfx-slide-in-left

ngfx-slide-in-right

ngfx-slide-in-down

ngfx-slide-out-up

ngfx-slide-out-left

ngfx-slide-out-right

ngfx-slide-out-down

ngfx-bounce-in

ngfx-bounce-in-down
Expand Down Expand Up @@ -273,10 +291,11 @@ If, for any reason, you would your element to be shown or hidden by default, you
```

####Infinite animations
If for example you want an element to repeat the animation or effect while your condition/expression is true (sometimes needed), just add the `infinite` class to your element:
If for example you want an element to repeat the animation or effect while your condition/expression is true (sometimes needed), just add the `ngfx-infinite` attribute to the element, or if your browser doesn't support css attributes use the `infinite`:

```html
<a href="#" ngfx-pulse="3 > 2">Pulse one time</a>
<a href="#" ngfx-pulse="3 > 2" ngfx-infinite>Pulse continuously</a>
<a href="#" ngfx-pulse="3 > 2" class="infinite">Pulse continuously</a>
```

Expand Down

0 comments on commit 820fe77

Please sign in to comment.