Skip to content

Commit a6417f7

Browse files
committed
updates
1 parent dc9e5ec commit a6417f7

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

README.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,9 @@ ___
4646

4747
#### Visual:
4848

49-
- [ ] Random
50-
- [ ] Figure out constant animation speed?
51-
- [ ] Figure out looping of functions
52-
- [ ] Center canvas
53-
54-
- [ ] **Window not stopping properly**
55-
56-
- [ ] Title
57-
- [ ] Better title image
58-
- [ ] description of "click a button"
59-
- [ ] Maybe short overview?
49+
- [x] Title
50+
- [x] Better title image
51+
- [x] description of "click a button"
6052
- [ ] Hover tool tips?
6153

6254
- [ ] Finish all the details
@@ -66,8 +58,8 @@ ___
6658
- [x] toggle borealis automatically
6759
- [x] Change chimney smoke color
6860

69-
- [ ] Fade outs:
70-
- [ ] Plane trails
61+
- [x] Fade outs:
62+
- [x] Plane trails
7163
- [x] Fade out smoke
7264

7365
- [ ] Repeats

effects/bird.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ function toggleBird() {
157157

158158
switchIdle();
159159
landBird();
160+
// startLandBird();
160161

161162

162163
xBirdLanding = -10
@@ -263,6 +264,15 @@ function landBird() {
263264
}
264265
}
265266

267+
// function startLandBird() {
268+
// intervalId = setInterval(landBird, 10000);
269+
// console.log('repeating bird')
270+
// }
271+
272+
// function stopLandBird() {
273+
// clearInterval(intervalId);
274+
// }
275+
266276
function idleBird() {
267277
if (birdActive) {
268278

effects/buttons.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ windowButton.textContent = "Windows"
161161
windowButton.onclick = toggleWindow;
162162
document.body.appendChild(windowButton);
163163

164+
164165
// var birdCycleButton= document.createElement('button2');
165166
// birdCycleButton.textContent = "cycle birbs"
166167
// birdCycleButton.onclick = repeatBirdCycle;

0 commit comments

Comments
 (0)