Okay.
I have good news.
I finished the Pomodoro Project today. That's kind of a big deal. :)
No, but really, I finished it, well, the actual JavaScript and HTML for it, anyhow. I still need to do the CSS, but I can do that in a moment, and there can be many variations of that. But, I'm done. Here's a screenshot.
And now it's time to make it look good with some CSS...
Check it out!
It's no Picasso, but it's all right. :) This is a function used to hide an element when it is clicked, in case I ever need to use it:
function validate() {
var myButton= document.getElementById('startPomodoro');
myButton.style.visibility='hidden';
setTimeout (function(){
myButton.style.visibility ='visible';
},2000);
return false;
}
This is how to change a property of an element on a click:
function changeMarginBack() {
document.getElementById("absoluteDiv").style.marginTop = "-40px";
}
And here's how to make something fade out on a click and then fade back in after clicking something else:
$( "#startPomodoro" ).click(function() {
$( "#startPomodoro" ).fadeOut( "slow", function() {
// Animation complete.
});
});
$( "#resetPomButton" ).click(function() {
$( "#startPomodoro" ).fadeIn( "slow", function() {
// Animation complete.
});
});
When you click on my "Start Pomodoro" button, it fades out, then it fades in again when you click on the "Reset Pomodoro" button.
SUMMARY OF CODING SKILLS
Total Treehouse Points: 5,503
Treehouse Points by Subject Matter (Miscellaneous not included):
HTML: 663
CSS: 1,599
Design: 1,193
Development Tools: 747
JavaScript: 1,239
Treehouse Ranking (%): "You have more total points than 93% of all students."
Treehouse Courses Completed:
How to Make a Website
HTML
CSS Foundations
CSS Layout Techniques
Aesthetic Foundations
Design Foundations
Adobe Photoshop Foundations
Adobe Illustrator Foundations (66% complete, switched focus from web design to web dev)
Console Foundations
Git Basics
Introduction to Programming
JavaScript Basics
Codecademy (& other) Courses Completed:
HTML and CSS (Codecademy)
Design Foundations
Adobe Photoshop Foundations
Adobe Illustrator Foundations (66% complete, switched focus from web design to web dev)
Console Foundations
Git Basics
Introduction to Programming
JavaScript Basics
Codecademy (& other) Courses Completed:
HTML and CSS (Codecademy)
Books Read or in Progress:
Completed: "Head First HTML and CSS," by E. Robson & E. Freeman
Completed: "A Smarter Way to Learn JavaScript," by Mark Myers
Completed: "HTML and CSS," by Jon DuckettCompleted: "JavaScript and JQuery," by Jon Duckett
My Progress on The Odin Project:
1. Introduction to Web Development 100% Complete
2. Web Development 101 33% Complete
Note: I switched to FCC for the great online community and better updates/support.
Note: I switched to FCC for the great online community and better updates/support.
My Progress on Free Code Camp (FCC):
1. Get Started with Free Code Camp Complete
2. HTML5 and CSS Complete
3. Responsive Design with Bootstrap Complete
4. Gear up for Success Complete
5. jQuery Complete
6. Basic JavaScript Complete
7. Object Oriented and Functional Programming Complete
8. Basic Algorithm Scripting Complete
9. Basic Front End Development Projects Complete
10. Intermediate Algorithm Scripting On 4 of 21 (#13 and #14 also done)
11. JSON API's and Ajax
12. Intermediate Front End Development Projects
13. Claim Your Front End Development Certificate
14. Upper Intermediate Algorithm Scripting
15. Automated Testing and Debugging
16. Advanced Algorithm Scripting
17. AngularJS
18. Git
19. Node.js and Express.js
20. MongoDB
21. Full Stack JavaScript Projects
22. Claim Your Full Stack Development Certificate
After the 800 hours of FCC work above, there are 800 more hours of non-profit coding projects.
Hours Spent Coding Today: 11
Total Hours Coding: 835
No comments:
Post a Comment