Skip to content

Commit dc26fcc

Browse files
authored
Update README.md
1 parent 1ce6ef3 commit dc26fcc

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Animate.less
55

66
Originally created by [Dan Eden](https://github.com/daneden/animate.css), `animate.less` is a collection of cross-browser CSS animations that you can plug right into your Less pre-processor for use in your projects. Thanks to the power of [Less](http://lesscss.org/), you can now create seriously complex animations, even without using any JavaScript or jQuery magic. More on this later.
77

8-
##What is Less?
8+
## What is Less?
99
Less is a CSS pre-processor, meaning that it extends the CSS language, adding features that allow variables, mixins, functions and many other techniques that allow you to make CSS that is more maintainable, themable and extendable.
1010

1111
Less runs inside Node, in the browser and inside Rhino. There are also many [3rd party tools](http://lesscss.org/usage/index.html#guis-for-less) available that allow you to compile your files and watch for changes. The latter is the way to go if you want to get up and running quickly.
1212

13-
##Usage
13+
## Usage
1414
To use animate.less in your website, simply drop this single file into your Less pre-processor and press `compile`. The pre-processor will generate an `animate.css` stylesheet. Just drop the stylesheet into your document's `<head>`, and add the class `animated` to an element, along with any of the included animation names. That's it! You now have an CSS animated element.
1515

1616
```html
@@ -45,7 +45,7 @@ You can change the duration of your animations, add a delay or change the number
4545

4646
*Note: be sure to replace "vendor" in the CSS with the applicable vendor prefixes (webkit, moz, etc)*
4747

48-
##Script-less Animations
48+
## Script-less Animations
4949
One of the advantages of using Less is that you can create functions, which are basically [Mixins](http://lesscss.org/features/#features-overview-feature-mixins) containing nested rules and other function calls. Animate.less contains a set of mixins that make manipulating your animations easier. For example, the above jQuery example can be written as:
5050

5151
```less
@@ -92,18 +92,18 @@ Which will output:
9292

9393
And there you have it! Phew! What a ride. The animation has been achieved without using any jQuery. Of course, this is only a tiny fraction of what can be achieved with Animate.less. Please head on over to [AnimateForLess.com](http://animateforless.com) for a full demo and to join the duscussion.
9494

95-
##Live Demo
95+
## Live Demo
9696
View the animation library in action over at http://animateforless.com/. You can find Dan Eden's original demo at http://daneden.me/animate/.
9797

9898
## License
9999
Animate.less is licensed under the MIT license. (http://opensource.org/licenses/MIT)
100100

101-
##Documentation
101+
## Documentation
102102
Coming soon. I promise! Below is a cheat sheet to keep you busy.
103103

104-
##Cheat Sheet
104+
## Cheat Sheet
105105

106-
####Attention Seekers
106+
#### Attention Seekers
107107
flash
108108
bounce
109109
shake
@@ -115,14 +115,14 @@ pulse
115115
rotate
116116
rotateCC
117117

118-
####Flippers
118+
#### Flippers
119119
flip
120120
flipInX
121121
flipOutX
122122
flipInY
123123
flipOutY
124124

125-
####Fading Entrances
125+
#### Fading Entrances
126126
fadeIn
127127
fadeInUp
128128
fadeInDown
@@ -133,7 +133,7 @@ fadeInDownBig
133133
fadeInLeftBig
134134
fadeInRightBig
135135

136-
####Fading Exits
136+
#### Fading Exits
137137
fadeOut
138138
fadeOutUp
139139
fadeOutDown
@@ -144,50 +144,50 @@ fadeOutDownBig
144144
fadeOutLeftBig
145145
fadeOutRightBig
146146

147-
####Bouncing Entrances
147+
#### Bouncing Entrances
148148
bounceIn
149149
bounceInDown
150150
bounceInUp
151151
bounceInLeft
152152
bounceInRight
153153

154-
####Bouncing Exits
154+
#### Bouncing Exits
155155
bounceOut
156156
bounceOutDown
157157
bounceOutUp
158158
bounceOutLeft
159159
bounceOutRight
160160

161-
####Rotating Entrances
161+
#### Rotating Entrances
162162
rotateIn
163163
rotateInDownLeft
164164
rotateInDownRight
165165
rotateInUpLeft
166166
rotateInUpRight
167167

168-
####Rotating Exits
168+
#### Rotating Exits
169169
rotateOut
170170
rotateOutDownLeft
171171
rotateOutDownRight
172172
rotateOutUpLeft
173173
rotateOutUpRight
174174

175-
####Lightspeed
175+
#### Lightspeed
176176
lightSpeedIn
177177
lightSpeedOut
178178

179-
####Specials
179+
#### Specials
180180
hinge
181181
rollIn
182182
rollOut
183183

184-
###Sliding Entrances
184+
### Sliding Entrances
185185
slideInDown
186186
slideInLeft
187187
slideInRight
188188
slideInUp
189189

190-
###Sliding Exits
190+
### Sliding Exits
191191
slideOutDown
192192
slideOutLeft
193193
slideOutRight

0 commit comments

Comments
 (0)