Skip to content

Commit f110bde

Browse files
committed
Intro to Effects: Cleanup
1 parent d1ec070 commit f110bde

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

page/effects/intro-to-effects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $( "div.hidden" ).show( 1250 );
4444
Most developers pass in a number of milliseconds to have more precise control
4545
over the duration.
4646

47-
##Fade and Slide Animations
47+
## Fade and Slide Animations
4848

4949
You may have noticed that `.show()` and `.hide()` use a combination of slide and fade effects
5050
when showing and hiding content in an animated way. If you would rather show or hide content with
@@ -71,7 +71,7 @@ $( "p" ).fadeOut( 1500 );
7171
$( "div.hidden" ).fadeIn( 750 );
7272
```
7373

74-
##Changing Display Based on Current Visibility State
74+
## Changing Display Based on Current Visibility State
7575

7676
jQuery can also let you change a content's visibility based on its current visibility state. `.toggle()`
7777
will show content that is currently hidden and hide content that is currently visible. You can pass the
@@ -99,7 +99,7 @@ $( "ol" ).slideToggle( 1000 );
9999
$( "blockquote" ).fadeToggle( 400 );
100100
```
101101

102-
##Doing Something After an Animation Completes
102+
## Doing Something After an Animation Completes
103103

104104
A common mistake when implementing jQuery effects is assuming that the execution of the next method in your
105105
chain will wait until the animation runs to completion.

0 commit comments

Comments
 (0)