Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 385 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 385 Bytes

meteor-wow

1. Initalize WOW

Template.landing.rendered = ->
  new WOW().init()

2. Add two classes to markup. "wow" and any animate.css animation as a class

<div class="wow bounceOutDown">
  Content to Reveal Here
</div>

<!--  or -->

<div class="wow swing">
  Other Content to Reveal Here
</div>