You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sessions/03/README.md
+9-11
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ Open `css/style.css` and find the following code:
98
98
}
99
99
```
100
100
101
-
*Flexbox*[remember](http://flexboxfroggy.com)?
101
+
[Remember *Flexbox*](http://flexboxfroggy.com)?
102
102
103
103
Can you find where the classes above are applied in `index.html`?
104
104
@@ -115,7 +115,7 @@ In `body` notice
115
115
</section>
116
116
```
117
117
118
-
Before `section` there's a `div` identified as `triggerDrone1`: we'll use that to trigger *scroll-magic* on the `drone` element to make it stick (and perhaps other fancy stuff) whilst we scroll.
118
+
Before `section` there's a `div` identified as `triggerDrone1` which we'll use to trigger *scroll-magic* on the `drone` element to make it stick (and perhaps other fancy stuff) whilst we scroll.
119
119
120
120
### Let the ScrollMagic begin
121
121
@@ -127,15 +127,15 @@ Scroll down to the bottom of the `body` and find
127
127
128
128
$(function()
129
129
{
130
-
// WRITE YOUR CODE BETWEEN HERE
130
+
// WRITE ALL YOUR JS CODE BETWEEN HERE
131
131
132
132
// AND HERE
133
133
})
134
134
135
135
</script>
136
136
```
137
137
138
-
You'll write your code between those two lines that start with `//`.
138
+
You'll write your JS code between those two lines that start with `//`.
0 commit comments