File tree Expand file tree Collapse file tree 3 files changed +16
-13
lines changed Expand file tree Collapse file tree 3 files changed +16
-13
lines changed Original file line number Diff line number Diff line change 46
46
47
47
#### Visual:
48
48
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"
60
52
- [ ] Hover tool tips?
61
53
62
54
- [ ] Finish all the details
66
58
- [x] toggle borealis automatically
67
59
- [x] Change chimney smoke color
68
60
69
- - [ ] Fade outs:
70
- - [ ] Plane trails
61
+ - [x ] Fade outs:
62
+ - [x ] Plane trails
71
63
- [x] Fade out smoke
72
64
73
65
- [ ] Repeats
Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ function toggleBird() {
157
157
158
158
switchIdle ( ) ;
159
159
landBird ( ) ;
160
+ // startLandBird();
160
161
161
162
162
163
xBirdLanding = - 10
@@ -263,6 +264,15 @@ function landBird() {
263
264
}
264
265
}
265
266
267
+ // function startLandBird() {
268
+ // intervalId = setInterval(landBird, 10000);
269
+ // console.log('repeating bird')
270
+ // }
271
+
272
+ // function stopLandBird() {
273
+ // clearInterval(intervalId);
274
+ // }
275
+
266
276
function idleBird ( ) {
267
277
if ( birdActive ) {
268
278
Original file line number Diff line number Diff line change @@ -161,6 +161,7 @@ windowButton.textContent = "Windows"
161
161
windowButton . onclick = toggleWindow ;
162
162
document . body . appendChild ( windowButton ) ;
163
163
164
+
164
165
// var birdCycleButton= document.createElement('button2');
165
166
// birdCycleButton.textContent = "cycle birbs"
166
167
// birdCycleButton.onclick = repeatBirdCycle;
You can’t perform that action at this time.
0 commit comments