File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ $( "div.hidden" ).show( 1250 );
44
44
Most developers pass in a number of milliseconds to have more precise control
45
45
over the duration.
46
46
47
- ##Fade and Slide Animations
47
+ ## Fade and Slide Animations
48
48
49
49
You may have noticed that ` .show() ` and ` .hide() ` use a combination of slide and fade effects
50
50
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 );
71
71
$( "div.hidden" ).fadeIn( 750 );
72
72
```
73
73
74
- ##Changing Display Based on Current Visibility State
74
+ ## Changing Display Based on Current Visibility State
75
75
76
76
jQuery can also let you change a content's visibility based on its current visibility state. ` .toggle() `
77
77
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 );
99
99
$( "blockquote" ).fadeToggle( 400 );
100
100
```
101
101
102
- ##Doing Something After an Animation Completes
102
+ ## Doing Something After an Animation Completes
103
103
104
104
A common mistake when implementing jQuery effects is assuming that the execution of the next method in your
105
105
chain will wait until the animation runs to completion.
You can’t perform that action at this time.
0 commit comments