diff --git a/Week-3/Homework/mandatory/1-alarmclock/alarmclock.js b/Week-3/Homework/mandatory/1-alarmclock/alarmclock.js index 6ca81cd..fa2f205 100644 --- a/Week-3/Homework/mandatory/1-alarmclock/alarmclock.js +++ b/Week-3/Homework/mandatory/1-alarmclock/alarmclock.js @@ -1,25 +1,66 @@ -function setAlarm() {} +function setAlarm() { + let timeSet = document.querySelector('#alarmSet').value; + function countDown() { + let minutes; + let seconds; + if (timeSet >= 10 && timeSet < 60) { + (minutes = '00'), (seconds = '' + timeSet); + document.querySelector('#timeRemaining').innerText = 'Time Remaining:00:' + timeSet; + } + if (timeSet < 10) { + (minutes = '00'), (seconds = '0' + timeSet); + document.querySelector('#timeRemaining').innerText = 'Time Remaining:00:0' + timeSet; + } else if (timeSet > 59) { + let testMinutes = Math.floor(timeSet / 60); + let testSeconds = timeSet % 60; + + if (testMinutes < 10 && testSeconds < 10) { + document.querySelector('#timeRemaining').innerText = + 'Time Remaining: 0' + Math.floor(timeSet / 60) + ':0' + timeSet % 60; + } + if (testMinutes < 10 && testSeconds > 10) { + document.querySelector('#timeRemaining').innerText = + 'Time Remaining: 0' + Math.floor(timeSet / 60) + ':' + timeSet % 60; + } + if (testMinutes > 10 && testSeconds < 10) { + document.querySelector('#timeRemaining').innerText = + 'Time Remaining:' + Math.floor(timeSet / 60) + ':0' + timeSet % 60; + } + if (testMinutes > 10 && testSeconds > 10) { + document.querySelector('#timeRemaining').innerText = + 'Time Remaining:' + Math.floor(timeSet / 60) + ':' + timeSet % 60; + } + } + + if (timeSet === 0) { + clearInterval(myaAlarm); + playAlarm(); + document.body.style.backgroundColor = 'aqua'; + } + timeSet--; + } +} // DO NOT EDIT BELOW HERE -var audio = new Audio("alarmsound.mp3"); +var audio = new Audio('alarmsound.mp3'); function setup() { - document.getElementById("set").addEventListener("click", () => { - setAlarm(); - }); + document.getElementById('set').addEventListener('click', () => { + setAlarm(); + }); - document.getElementById("stop").addEventListener("click", () => { - pauseAlarm(); - }); + document.getElementById('stop').addEventListener('click', () => { + pauseAlarm(); + }); } function playAlarm() { - audio.play(); + audio.play(); } function pauseAlarm() { - audio.pause(); + audio.pause(); } window.onload = setup; diff --git a/Week-3/Homework/mandatory/2-quotegenerator/index.html b/Week-3/Homework/mandatory/2-quotegenerator/index.html index b6115be..5174cf8 100644 --- a/Week-3/Homework/mandatory/2-quotegenerator/index.html +++ b/Week-3/Homework/mandatory/2-quotegenerator/index.html @@ -10,8 +10,25 @@ crossorigin="anonymous" /> + + + +
+
+ + +

Life isn’t about getting and having, it’s about giving and being.

+ +
+
+

Kevin Kruse

+ +
+
+ + diff --git a/Week-3/Homework/mandatory/2-quotegenerator/quotes.js b/Week-3/Homework/mandatory/2-quotegenerator/quotes.js index 39ab245..683d591 100644 --- a/Week-3/Homework/mandatory/2-quotegenerator/quotes.js +++ b/Week-3/Homework/mandatory/2-quotegenerator/quotes.js @@ -15,478 +15,449 @@ // --------------- // pickFromArray([1,2,3,4]) //maybe returns 2 // pickFromArray(coloursArray) //maybe returns "#F38630" -// +//q // You DO NOT need to understand how this function works. function pickFromArray(choices) { - return choices[Math.floor(Math.random() * choices.length)]; + return choices[Math.floor(Math.random() * choices.length)]; } // A list of quotes you can use in your app. // Feel free to edit them, and to add your own favourites. const quotes = [ - { - quote: "Life isn’t about getting and having, it’s about giving and being.", - author: "Kevin Kruse", - }, - { - quote: "Whatever the mind of man can conceive and believe, it can achieve.", - author: "Napoleon Hill", - }, - { - quote: "Strive not to be a success, but rather to be of value.", - author: "Albert Einstein", - }, - { - quote: - "Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.", - author: "Robert Frost", - }, - { - quote: "I attribute my success to this: I never gave or took any excuse.", - author: "Florence Nightingale", - }, - { - quote: "You miss 100% of the shots you don’t take.", - author: "Wayne Gretzky", - }, - { - quote: - "I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.", - author: "Michael Jordan", - }, - { - quote: - "The most difficult thing is the decision to act, the rest is merely tenacity.", - author: "Amelia Earhart", - }, - { - quote: "Every strike brings me closer to the next home run.", - author: "Babe Ruth", - }, - { - quote: "Definiteness of purpose is the starting point of all achievement.", - author: "W. Clement Stone", - }, - { - quote: "We must balance conspicuous consumption with conscious capitalism.", - author: "Kevin Kruse", - }, - { - quote: "Life is what happens to you while you’re busy making other plans.", - author: "John Lennon", - }, - { - quote: "We become what we think about.", - author: "Earl Nightingale", - }, - { - quote: - "Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do, so throw off the bowlines, sail away from safe harbor, catch the trade winds in your sails. Explore, Dream, Discover.", - author: "Mark Twain", - }, - { - quote: "Life is 10% what happens to me and 90% of how I react to it.", - author: "Charles Swindoll", - }, - { - quote: - "The most common way people give up their power is by thinking they don’t have any.", - author: "Alice Walker", - }, - { - quote: "The mind is everything. What you think you become.", - author: "Buddha", - }, - { - quote: - "The best time to plant a tree was 20 years ago. The second best time is now.", - author: "Chinese Proverb", - }, - { - quote: "An unexamined life is not worth living.", - author: "Socrates", - }, - { - quote: "Eighty percent of success is showing up.", - author: "Woody Allen", - }, - { - quote: - "Your time is limited, so don’t waste it living someone else’s life.", - author: "Steve Jobs", - }, - { - quote: "Winning isn’t everything, but wanting to win is.", - author: "Vince Lombardi", - }, - { - quote: - "I am not a product of my circumstances. I am a product of my decisions.", - author: "Stephen Covey", - }, - { - quote: - "Every child is an artist. The problem is how to remain an artist once he grows up.", - author: "Pablo Picasso", - }, - { - quote: - "You can never cross the ocean until you have the courage to lose sight of the shore.", - author: "Christopher Columbus", - }, - { - quote: - "I’ve learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel.", - author: "Maya Angelou", - }, - { - quote: "Either you run the day, or the day runs you.", - author: "Jim Rohn", - }, - { - quote: "Whether you think you can or you think you can’t, you’re right.", - author: "Henry Ford", - }, - { - quote: - "The two most important days in your life are the day you are born and the day you find out why.", - author: "Mark Twain", - }, - { - quote: - "Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it.", - author: "Johann Wolfgang von Goethe", - }, - { - quote: "The best revenge is massive success.", - author: "Frank Sinatra", - }, - { - quote: - "People often say that motivation doesn’t last. Well, neither does bathing. That’s why we recommend it daily.", - author: "Zig Ziglar", - }, - { - quote: "Life shrinks or expands in proportion to one’s courage.", - author: "Anais Nin", - }, - { - quote: - "If you hear a voice within you say “you cannot paint,” then by all means paint and that voice will be silenced.", - author: "Vincent Van Gogh", - }, - { - quote: - "There is only one way to avoid criticism: do nothing, say nothing, and be nothing.", - author: "Aristotle", - }, - { - quote: - "Ask and it will be given to you; search, and you will find; knock and the door will be opened for you.", - author: "Jesus", - }, - { - quote: - "The only person you are destined to become is the person you decide to be.", - author: "Ralph Waldo Emerson", - }, - { - quote: - "Go confidently in the direction of your dreams. Live the life you have imagined.", - author: "Henry David Thoreau", - }, - { - quote: - "When I stand before God at the end of my life, I would hope that I would not have a single bit of talent left and could say, I used everything you gave me.", - author: "Erma Bombeck", - }, - { - quote: - "Few things can help an individual more than to place responsibility on him, and to let him know that you trust him.", - author: "Booker T. Washington", - }, - { - quote: - "Certain things catch your eye, but pursue only those that capture the heart.", - author: " Ancient Indian Proverb", - }, - { - quote: "Believe you can and you’re halfway there.", - author: "Theodore Roosevelt", - }, - { - quote: "Everything you’ve ever wanted is on the other side of fear.", - author: "George Addair", - }, - { - quote: - "We can easily forgive a child who is afraid of the dark; the real tragedy of life is when men are afraid of the light.", - author: "Plato", - }, - { - quote: - "Teach thy tongue to say, “I do not know,” and thous shalt progress.", - author: "Maimonides", - }, - { - quote: "Start where you are. Use what you have. Do what you can.", - author: "Arthur Ashe", - }, - { - quote: - "When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy’. They told me I didn’t understand the assignment, and I told them they didn’t understand life.", - author: "John Lennon", - }, - { - quote: "Fall seven times and stand up eight.", - author: "Japanese Proverb", - }, - { - quote: - "When one door of happiness closes, another opens, but often we look so long at the closed door that we do not see the one that has been opened for us.", - author: "Helen Keller", - }, - { - quote: "Everything has beauty, but not everyone can see.", - author: "Confucius", - }, - { - quote: - "How wonderful it is that nobody need wait a single moment before starting to improve the world.", - author: "Anne Frank", - }, - { - quote: "When I let go of what I am, I become what I might be.", - author: "Lao Tzu", - }, - { - quote: - "Life is not measured by the number of breaths we take, but by the moments that take our breath away.", - author: "Maya Angelou", - }, - { - quote: - "Happiness is not something readymade. It comes from your own actions.", - author: "Dalai Lama", - }, - { - quote: - "If you’re offered a seat on a rocket ship, don’t ask what seat! Just get on.", - author: "Sheryl Sandberg", - }, - { - quote: - "First, have a definite, clear practical ideal; a goal, an objective. Second, have the necessary means to achieve your ends; wisdom, money, materials, and methods. Third, adjust all your means to that end.", - author: "Aristotle", - }, - { - quote: "If the wind will not serve, take to the oars.", - author: "Latin Proverb", - }, - { - quote: - "You can’t fall if you don’t climb. But there’s no joy in living your whole life on the ground.", - author: "Unknown", - }, - { - quote: - "We must believe that we are gifted for something, and that this thing, at whatever cost, must be attained.", - author: "Marie Curie", - }, - { - quote: - "Too many of us are not living our dreams because we are living our fears.", - author: "Les Brown", - }, - { - quote: - "Challenges are what make life interesting and overcoming them is what makes life meaningful.", - author: "Joshua J. Marine", - }, - { - quote: "If you want to lift yourself up, lift up someone else.", - author: "Booker T. Washington", - }, - { - quote: - "I have been impressed with the urgency of doing. Knowing is not enough; we must apply. Being willing is not enough; we must do.", - author: "Leonardo da Vinci", - }, - { - quote: - "Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.", - author: "Jamie Paolinetti", - }, - { - quote: - "You take your life in your own hands, and what happens? A terrible thing, no one to blame.", - author: "Erica Jong", - }, - { - quote: - "What’s money? A man is a success if he gets up in the morning and goes to bed at night and in between does what he wants to do.", - author: "Bob Dylan", - }, - { - quote: "I didn’t fail the test. I just found 100 ways to do it wrong.", - author: "Benjamin Franklin", - }, - { - quote: - "In order to succeed, your desire for success should be greater than your fear of failure.", - author: "Bill Cosby", - }, - { - quote: "A person who never made a mistake never tried anything new.", - author: " Albert Einstein", - }, - { - quote: - "The person who says it cannot be done should not interrupt the person who is doing it.", - author: "Chinese Proverb", - }, - { - quote: "There are no traffic jams along the extra mile.", - author: "Roger Staubach", - }, - { - quote: "It is never too late to be what you might have been.", - author: "George Eliot", - }, - { - quote: "You become what you believe.", - author: "Oprah Winfrey", - }, - { - quote: "I would rather die of passion than of boredom.", - author: "Vincent van Gogh", - }, - { - quote: - "A truly rich man is one whose children run into his arms when his hands are empty.", - author: "Unknown", - }, - { - quote: - "It is not what you do for your children, but what you have taught them to do for themselves, that will make them successful human beings.", - author: "Ann Landers", - }, - { - quote: - "If you want your children to turn out well, spend twice as much time with them, and half as much money.", - author: "Abigail Van Buren", - }, - { - quote: - "Build your own dreams, or someone else will hire you to build theirs.", - author: "Farrah Gray", - }, - { - quote: - "The battles that count aren’t the ones for gold medals. The struggles within yourself–the invisible battles inside all of us–that’s where it’s at.", - author: "Jesse Owens", - }, - { - quote: "Education costs money. But then so does ignorance.", - author: "Sir Claus Moser", - }, - { - quote: - "I have learned over the years that when one’s mind is made up, this diminishes fear.", - author: "Rosa Parks", - }, - { - quote: "It does not matter how slowly you go as long as you do not stop.", - author: "Confucius", - }, - { - quote: - "If you look at what you have in life, you’ll always have more. If you look at what you don’t have in life, you’ll never have enough.", - author: "Oprah Winfrey", - }, - { - quote: - "Remember that not getting what you want is sometimes a wonderful stroke of luck.", - author: "Dalai Lama", - }, - { - quote: "You can’t use up creativity. The more you use, the more you have.", - author: "Maya Angelou", - }, - { - quote: "Dream big and dare to fail.", - author: "Norman Vaughan", - }, - { - quote: - "Our lives begin to end the day we become silent about things that matter.", - author: "Martin Luther King Jr.", - }, - { - quote: "Do what you can, where you are, with what you have.", - author: "Teddy Roosevelt", - }, - { - quote: - "If you do what you’ve always done, you’ll get what you’ve always gotten.", - author: "Tony Robbins", - }, - { - quote: "Dreaming, after all, is a form of planning.", - author: "Gloria Steinem", - }, - { - quote: - "It’s your place in the world; it’s your life. Go on and do all you can with it, and make it the life you want to live.", - author: "Mae Jemison", - }, - { - quote: - "You may be disappointed if you fail, but you are doomed if you don’t try.", - author: "Beverly Sills", - }, - { - quote: "Remember no one can make you feel inferior without your consent.", - author: "Eleanor Roosevelt", - }, - { - quote: "Life is what we make it, always has been, always will be.", - author: "Grandma Moses", - }, - { - quote: - "The question isn’t who is going to let me; it’s who is going to stop me.", - author: "Ayn Rand", - }, - { - quote: - "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.", - author: "Henry Ford", - }, - { - quote: - "It’s not the years in your life that count. It’s the life in your years.", - author: "Abraham Lincoln", - }, - { - quote: "Change your thoughts and you change your world.", - author: "Norman Vincent Peale", - }, - { - quote: - "Either write something worth reading or do something worth writing.", - author: "Benjamin Franklin", - }, - { - quote: "Nothing is impossible, the word itself says, “I’m possible!”", - author: "–Audrey Hepburn", - }, - { - quote: "The only way to do great work is to love what you do.", - author: "Steve Jobs", - }, - { - quote: "If you can dream it, you can achieve it.", - author: "Zig Ziglar", - }, + { + quote : 'Life isn’t about getting and having, it’s about giving and being.', + author : 'Kevin Kruse' + }, + { + quote : 'Whatever the mind of man can conceive and believe, it can achieve.', + author : 'Napoleon Hill' + }, + { + quote : 'Strive not to be a success, but rather to be of value.', + author : 'Albert Einstein' + }, + { + quote : + 'Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.', + author : 'Robert Frost' + }, + { + quote : 'I attribute my success to this: I never gave or took any excuse.', + author : 'Florence Nightingale' + }, + { + quote : 'You miss 100% of the shots you don’t take.', + author : 'Wayne Gretzky' + }, + { + quote : + 'I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.', + author : 'Michael Jordan' + }, + { + quote : 'The most difficult thing is the decision to act, the rest is merely tenacity.', + author : 'Amelia Earhart' + }, + { + quote : 'Every strike brings me closer to the next home run.', + author : 'Babe Ruth' + }, + { + quote : 'Definiteness of purpose is the starting point of all achievement.', + author : 'W. Clement Stone' + }, + { + quote : 'We must balance conspicuous consumption with conscious capitalism.', + author : 'Kevin Kruse' + }, + { + quote : 'Life is what happens to you while you’re busy making other plans.', + author : 'John Lennon' + }, + { + quote : 'We become what we think about.', + author : 'Earl Nightingale' + }, + { + quote : + 'Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do, so throw off the bowlines, sail away from safe harbor, catch the trade winds in your sails. Explore, Dream, Discover.', + author : 'Mark Twain' + }, + { + quote : 'Life is 10% what happens to me and 90% of how I react to it.', + author : 'Charles Swindoll' + }, + { + quote : 'The most common way people give up their power is by thinking they don’t have any.', + author : 'Alice Walker' + }, + { + quote : 'The mind is everything. What you think you become.', + author : 'Buddha' + }, + { + quote : 'The best time to plant a tree was 20 years ago. The second best time is now.', + author : 'Chinese Proverb' + }, + { + quote : 'An unexamined life is not worth living.', + author : 'Socrates' + }, + { + quote : 'Eighty percent of success is showing up.', + author : 'Woody Allen' + }, + { + quote : 'Your time is limited, so don’t waste it living someone else’s life.', + author : 'Steve Jobs' + }, + { + quote : 'Winning isn’t everything, but wanting to win is.', + author : 'Vince Lombardi' + }, + { + quote : 'I am not a product of my circumstances. I am a product of my decisions.', + author : 'Stephen Covey' + }, + { + quote : 'Every child is an artist. The problem is how to remain an artist once he grows up.', + author : 'Pablo Picasso' + }, + { + quote : 'You can never cross the ocean until you have the courage to lose sight of the shore.', + author : 'Christopher Columbus' + }, + { + quote : + 'I’ve learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel.', + author : 'Maya Angelou' + }, + { + quote : 'Either you run the day, or the day runs you.', + author : 'Jim Rohn' + }, + { + quote : 'Whether you think you can or you think you can’t, you’re right.', + author : 'Henry Ford' + }, + { + quote : 'The two most important days in your life are the day you are born and the day you find out why.', + author : 'Mark Twain' + }, + { + quote : 'Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it.', + author : 'Johann Wolfgang von Goethe' + }, + { + quote : 'The best revenge is massive success.', + author : 'Frank Sinatra' + }, + { + quote : + 'People often say that motivation doesn’t last. Well, neither does bathing. That’s why we recommend it daily.', + author : 'Zig Ziglar' + }, + { + quote : 'Life shrinks or expands in proportion to one’s courage.', + author : 'Anais Nin' + }, + { + quote : + 'If you hear a voice within you say “you cannot paint,” then by all means paint and that voice will be silenced.', + author : 'Vincent Van Gogh' + }, + { + quote : 'There is only one way to avoid criticism: do nothing, say nothing, and be nothing.', + author : 'Aristotle' + }, + { + quote : + 'Ask and it will be given to you; search, and you will find; knock and the door will be opened for you.', + author : 'Jesus' + }, + { + quote : 'The only person you are destined to become is the person you decide to be.', + author : 'Ralph Waldo Emerson' + }, + { + quote : 'Go confidently in the direction of your dreams. Live the life you have imagined.', + author : 'Henry David Thoreau' + }, + { + quote : + 'When I stand before God at the end of my life, I would hope that I would not have a single bit of talent left and could say, I used everything you gave me.', + author : 'Erma Bombeck' + }, + { + quote : + 'Few things can help an individual more than to place responsibility on him, and to let him know that you trust him.', + author : 'Booker T. Washington' + }, + { + quote : 'Certain things catch your eye, but pursue only those that capture the heart.', + author : ' Ancient Indian Proverb' + }, + { + quote : 'Believe you can and you’re halfway there.', + author : 'Theodore Roosevelt' + }, + { + quote : 'Everything you’ve ever wanted is on the other side of fear.', + author : 'George Addair' + }, + { + quote : + 'We can easily forgive a child who is afraid of the dark; the real tragedy of life is when men are afraid of the light.', + author : 'Plato' + }, + { + quote : 'Teach thy tongue to say, “I do not know,” and thous shalt progress.', + author : 'Maimonides' + }, + { + quote : 'Start where you are. Use what you have. Do what you can.', + author : 'Arthur Ashe' + }, + { + quote : + 'When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy’. They told me I didn’t understand the assignment, and I told them they didn’t understand life.', + author : 'John Lennon' + }, + { + quote : 'Fall seven times and stand up eight.', + author : 'Japanese Proverb' + }, + { + quote : + 'When one door of happiness closes, another opens, but often we look so long at the closed door that we do not see the one that has been opened for us.', + author : 'Helen Keller' + }, + { + quote : 'Everything has beauty, but not everyone can see.', + author : 'Confucius' + }, + { + quote : 'How wonderful it is that nobody need wait a single moment before starting to improve the world.', + author : 'Anne Frank' + }, + { + quote : 'When I let go of what I am, I become what I might be.', + author : 'Lao Tzu' + }, + { + quote : 'Life is not measured by the number of breaths we take, but by the moments that take our breath away.', + author : 'Maya Angelou' + }, + { + quote : 'Happiness is not something readymade. It comes from your own actions.', + author : 'Dalai Lama' + }, + { + quote : 'If you’re offered a seat on a rocket ship, don’t ask what seat! Just get on.', + author : 'Sheryl Sandberg' + }, + { + quote : + 'First, have a definite, clear practical ideal; a goal, an objective. Second, have the necessary means to achieve your ends; wisdom, money, materials, and methods. Third, adjust all your means to that end.', + author : 'Aristotle' + }, + { + quote : 'If the wind will not serve, take to the oars.', + author : 'Latin Proverb' + }, + { + quote : 'You can’t fall if you don’t climb. But there’s no joy in living your whole life on the ground.', + author : 'Unknown' + }, + { + quote : + 'We must believe that we are gifted for something, and that this thing, at whatever cost, must be attained.', + author : 'Marie Curie' + }, + { + quote : 'Too many of us are not living our dreams because we are living our fears.', + author : 'Les Brown' + }, + { + quote : 'Challenges are what make life interesting and overcoming them is what makes life meaningful.', + author : 'Joshua J. Marine' + }, + { + quote : 'If you want to lift yourself up, lift up someone else.', + author : 'Booker T. Washington' + }, + { + quote : + 'I have been impressed with the urgency of doing. Knowing is not enough; we must apply. Being willing is not enough; we must do.', + author : 'Leonardo da Vinci' + }, + { + quote : + 'Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.', + author : 'Jamie Paolinetti' + }, + { + quote : 'You take your life in your own hands, and what happens? A terrible thing, no one to blame.', + author : 'Erica Jong' + }, + { + quote : + 'What’s money? A man is a success if he gets up in the morning and goes to bed at night and in between does what he wants to do.', + author : 'Bob Dylan' + }, + { + quote : 'I didn’t fail the test. I just found 100 ways to do it wrong.', + author : 'Benjamin Franklin' + }, + { + quote : 'In order to succeed, your desire for success should be greater than your fear of failure.', + author : 'Bill Cosby' + }, + { + quote : 'A person who never made a mistake never tried anything new.', + author : ' Albert Einstein' + }, + { + quote : 'The person who says it cannot be done should not interrupt the person who is doing it.', + author : 'Chinese Proverb' + }, + { + quote : 'There are no traffic jams along the extra mile.', + author : 'Roger Staubach' + }, + { + quote : 'It is never too late to be what you might have been.', + author : 'George Eliot' + }, + { + quote : 'You become what you believe.', + author : 'Oprah Winfrey' + }, + { + quote : 'I would rather die of passion than of boredom.', + author : 'Vincent van Gogh' + }, + { + quote : 'A truly rich man is one whose children run into his arms when his hands are empty.', + author : 'Unknown' + }, + { + quote : + 'It is not what you do for your children, but what you have taught them to do for themselves, that will make them successful human beings.', + author : 'Ann Landers' + }, + { + quote : + 'If you want your children to turn out well, spend twice as much time with them, and half as much money.', + author : 'Abigail Van Buren' + }, + { + quote : 'Build your own dreams, or someone else will hire you to build theirs.', + author : 'Farrah Gray' + }, + { + quote : + 'The battles that count aren’t the ones for gold medals. The struggles within yourself–the invisible battles inside all of us–that’s where it’s at.', + author : 'Jesse Owens' + }, + { + quote : 'Education costs money. But then so does ignorance.', + author : 'Sir Claus Moser' + }, + { + quote : 'I have learned over the years that when one’s mind is made up, this diminishes fear.', + author : 'Rosa Parks' + }, + { + quote : 'It does not matter how slowly you go as long as you do not stop.', + author : 'Confucius' + }, + { + quote : + 'If you look at what you have in life, you’ll always have more. If you look at what you don’t have in life, you’ll never have enough.', + author : 'Oprah Winfrey' + }, + { + quote : 'Remember that not getting what you want is sometimes a wonderful stroke of luck.', + author : 'Dalai Lama' + }, + { + quote : 'You can’t use up creativity. The more you use, the more you have.', + author : 'Maya Angelou' + }, + { + quote : 'Dream big and dare to fail.', + author : 'Norman Vaughan' + }, + { + quote : 'Our lives begin to end the day we become silent about things that matter.', + author : 'Martin Luther King Jr.' + }, + { + quote : 'Do what you can, where you are, with what you have.', + author : 'Teddy Roosevelt' + }, + { + quote : 'If you do what you’ve always done, you’ll get what you’ve always gotten.', + author : 'Tony Robbins' + }, + { + quote : 'Dreaming, after all, is a form of planning.', + author : 'Gloria Steinem' + }, + { + quote : + 'It’s your place in the world; it’s your life. Go on and do all you can with it, and make it the life you want to live.', + author : 'Mae Jemison' + }, + { + quote : 'You may be disappointed if you fail, but you are doomed if you don’t try.', + author : 'Beverly Sills' + }, + { + quote : 'Remember no one can make you feel inferior without your consent.', + author : 'Eleanor Roosevelt' + }, + { + quote : 'Life is what we make it, always has been, always will be.', + author : 'Grandma Moses' + }, + { + quote : 'The question isn’t who is going to let me; it’s who is going to stop me.', + author : 'Ayn Rand' + }, + { + quote : + 'When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.', + author : 'Henry Ford' + }, + { + quote : 'It’s not the years in your life that count. It’s the life in your years.', + author : 'Abraham Lincoln' + }, + { + quote : 'Change your thoughts and you change your world.', + author : 'Norman Vincent Peale' + }, + { + quote : 'Either write something worth reading or do something worth writing.', + author : 'Benjamin Franklin' + }, + { + quote : 'Nothing is impossible, the word itself says, “I’m possible!”', + author : '–Audrey Hepburn' + }, + { + quote : 'The only way to do great work is to love what you do.', + author : 'Steve Jobs' + }, + { + quote : 'If you can dream it, you can achieve it.', + author : 'Zig Ziglar' + } ]; +function showNextQuoat() { + let currentQuote = pickFromArray(quotes); + document.querySelector('#quote').innerHTML = currentQuote.quote; + document.querySelector('#author').innerHTML = currentQuote.author; +} diff --git a/Week-3/Homework/mandatory/2-quotegenerator/style.css b/Week-3/Homework/mandatory/2-quotegenerator/style.css index 63cedf2..c3d8d4d 100644 --- a/Week-3/Homework/mandatory/2-quotegenerator/style.css +++ b/Week-3/Homework/mandatory/2-quotegenerator/style.css @@ -1 +1,49 @@ /** Write your CSS in here **/ +body { + background-color: orange; +} + +.main { + background-color: white; + margin-top: 45%; + margin-bottom: 45%; + padding-top: 5%; + padding-bottom: 5%; + margin-right: 2%; + margin-left: 2%; +} +#quoatDiv { + display: inline-block; +} +i { + font-size: 300%; + + padding-left: 1%; + color: orange; +} +#rightQouat { + padding-left: 95%; +} + +#quote { + padding-left: 5%; + padding-bottom: 5%; + margin-bottom: 2%; + color: orange; +} +#authorNdButton { + padding-left: 80%; +} +#author { + color: orange; + padding-bottom: 20%; + font-size: 150%; +} +#next { + background-color: orange; + color: white; + border: none; + width: 50%; + font-size: 120%; + padding: 2%; +} diff --git a/Week-3/Homework/mandatory/3-slideshow/images/fastBack.png b/Week-3/Homework/mandatory/3-slideshow/images/fastBack.png new file mode 100644 index 0000000..8067dc0 Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/fastBack.png differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/fastFor.png b/Week-3/Homework/mandatory/3-slideshow/images/fastFor.png new file mode 100644 index 0000000..2e928ef Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/fastFor.png differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/fastForward.jpg b/Week-3/Homework/mandatory/3-slideshow/images/fastForward.jpg new file mode 100644 index 0000000..a58d614 --- /dev/null +++ b/Week-3/Homework/mandatory/3-slideshow/images/fastForward.jpg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/Week-3/Homework/mandatory/3-slideshow/images/forwArrow.png b/Week-3/Homework/mandatory/3-slideshow/images/forwArrow.png new file mode 100644 index 0000000..238a6b2 Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/forwArrow.png differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image1.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image1.jpg new file mode 100644 index 0000000..6e41323 Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image1.jpg differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image2.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image2.jpg new file mode 100644 index 0000000..3efb8fb Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image2.jpg differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image3.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image3.jpg new file mode 100644 index 0000000..e2a709b Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image3.jpg differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/image4.jpg b/Week-3/Homework/mandatory/3-slideshow/images/image4.jpg new file mode 100644 index 0000000..4222a48 Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/image4.jpg differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/pause.png b/Week-3/Homework/mandatory/3-slideshow/images/pause.png new file mode 100644 index 0000000..acce303 Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/pause.png differ diff --git a/Week-3/Homework/mandatory/3-slideshow/images/pause.svg b/Week-3/Homework/mandatory/3-slideshow/images/pause.svg new file mode 100644 index 0000000..d7f1a74 --- /dev/null +++ b/Week-3/Homework/mandatory/3-slideshow/images/pause.svg @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/Week-3/Homework/mandatory/3-slideshow/images/prevArrow.png b/Week-3/Homework/mandatory/3-slideshow/images/prevArrow.png new file mode 100644 index 0000000..9828af8 Binary files /dev/null and b/Week-3/Homework/mandatory/3-slideshow/images/prevArrow.png differ diff --git a/Week-3/Homework/mandatory/3-slideshow/index.html b/Week-3/Homework/mandatory/3-slideshow/index.html index 39cd40e..a48ee37 100644 --- a/Week-3/Homework/mandatory/3-slideshow/index.html +++ b/Week-3/Homework/mandatory/3-slideshow/index.html @@ -1,17 +1,31 @@ - - Slideshow - - - - - - - + + Slideshow + + + + + +
+ + + +
+ + + + +
+ + + +
+ + diff --git a/Week-3/Homework/mandatory/3-slideshow/slideshow.js b/Week-3/Homework/mandatory/3-slideshow/slideshow.js index b55091c..c423da3 100644 --- a/Week-3/Homework/mandatory/3-slideshow/slideshow.js +++ b/Week-3/Homework/mandatory/3-slideshow/slideshow.js @@ -1 +1,59 @@ // Write your code here +// Write your code here +let autoBackward; +let autoForward; +document.querySelector(".autoForward").addEventListener("click", function () { + autoForward = setInterval(function () { + const currentImage = document.querySelector(".show"); + const nextImage = currentImage.nextElementSibling; + if (nextImage.heigth !== 0) { + currentImage.classList.remove("show"); + nextImage.classList.add("show"); + } + }, 2000); + const currentImage = document.querySelector(".show"); + const nextImage = currentImage.nextElementSibling; + if (nextImage.heigth !== 0) { + currentImage.classList.remove("show"); + nextImage.classList.add("show"); + } +}); +document.querySelector(".pauseForward").addEventListener("click", function () { + clearInterval(autoForward); +}); +document.querySelector(".autoBackward").addEventListener("click", function () { + autoBackward = setInterval(function () { + const currentImage = document.querySelector(".show"); + const previousImage = currentImage.previousElementSibling; + if (previousImage.heigth !== 0) { + currentImage.classList.remove("show"); + previousImage.classList.add("show"); + } + }, 2000); + const currentImage = document.querySelector(".show"); + const nextImage = currentImage.nextElementSibling; + if (nextImage.heigth !== 0) { + currentImage.classList.remove("show"); + nextImage.classList.add("show"); + } +}); +document.querySelector(".pauseBack").addEventListener("click", function () { + clearInterval(autoBackward); +}); +document.querySelector(".next").addEventListener("click", function () { + const currentImage = document.querySelector(".show"); + const nextImage = currentImage.nextElementSibling; + if (nextImage.heigth !== 0) { + currentImage.classList.remove("show"); + nextImage.classList.add("show"); + } +}); + +document.querySelector(".prev").addEventListener("click", function () { + const currentImage = document.querySelector(".show"); + const previousImage = currentImage.previousElementSibling; + if (previousImage.heigth !== 0) { + currentImage.classList.remove("show"); + previousImage.classList.add("show"); + } +}); diff --git a/Week-3/Homework/mandatory/3-slideshow/style.css b/Week-3/Homework/mandatory/3-slideshow/style.css index 63cedf2..ea4e57e 100644 --- a/Week-3/Homework/mandatory/3-slideshow/style.css +++ b/Week-3/Homework/mandatory/3-slideshow/style.css @@ -1 +1,32 @@ /** Write your CSS in here **/ +/** Write your CSS in here **/ +.slider { + margin: auto 60%; + width: 100%; +} +.slide { + width: 800px; + height: 500px; + float: left; + position: relative; +} +.slide img { + width: 100%; + height: 100%; + display: none; + border-radius: 15px; +} +.next, +.prev, +.autoBackward, +.autoForward, +.pauseBack, +.pauseForward { + width: 60px; + float: left; + margin-top: 250px; + cursor: pointer; +} +.slide .show { + display: inline-block; +} diff --git a/Week-3/InClass/Callbacks/exercise-1/exercise.js b/Week-3/InClass/Callbacks/exercise-1/exercise.js index 40f06b0..6a9a84f 100644 --- a/Week-3/InClass/Callbacks/exercise-1/exercise.js +++ b/Week-3/InClass/Callbacks/exercise-1/exercise.js @@ -10,4 +10,38 @@ Update your code to make the colour change every 5 seconds to something differen Prefer to work on a codepen? https://codepen.io/makanti/pen/abOreLg ================ -*/ \ No newline at end of file +*/ + +setTimeout(function() { + document.body.style.backgroundColor = 'red'; +}, 5000); + +colors = [ + '#007bff', + '#6610f2', + ' #6f42c1', + '#e83e8c', + '#dc3545', + '#fd7e14', + '#ffc107', + '#28a745', + '#20c997', + '#17a2b8', + '#fff', + '#6c757d', + '#343a40', + '#007bff', + '#6c757d', + '#28a745', + '#17a2b8', + '#ffc107', + '#dc3545', + '#f8f9fa', + '#343a40' +]; + +var index = 0; +setInterval(function() { + document.body.style.backgroundColor = colors[index]; + index++; +}, 5000); diff --git a/Week-3/InClass/Callbacks/exercise-2/exercise.js b/Week-3/InClass/Callbacks/exercise-2/exercise.js index eca9595..4bfc6ea 100644 --- a/Week-3/InClass/Callbacks/exercise-2/exercise.js +++ b/Week-3/InClass/Callbacks/exercise-2/exercise.js @@ -34,37 +34,184 @@ TIP: Use the functions you created on tasks 1-3 Prefer to work on a codepen? https://codepen.io/makanti/pen/MWwMgmW?editors ================ */ +//document.body.style.backgroundColor = 'black'; const movies = [ - { - title: "Color Out of Space", - director: "Richard Stanley", - type: "sci-fi", - haveWatched: true, - }, - { - title: "A Twelve-Year Night", - director: "Álvaro Brechner", - type: "horror", - haveWatched: false, - }, - { - title: "The Whistlers", - director: "Corneliu Porumboiu", - type: "comedy", - haveWatched: true, - }, - { - title: "The Invisible Man", - director: "Leigh Whannell", - type: "horror", - haveWatched: false, - }, + { + title : 'Color Out of Space', + director : 'Richard Stanley', + type : 'sci-fi', + haveWatched : true + }, + { + title : 'A Twelve-Year Night', + director : 'Álvaro Brechner', + type : 'horror', + haveWatched : false + }, + { + title : 'The Whistlers', + director : 'Corneliu Porumboiu', + type : 'comedy', + haveWatched : true + }, + { + title : 'The Invisible Man', + director : 'Leigh Whannell', + type : 'horror', + haveWatched : false + } ]; +/* +function showMovies(movie) { + movie.forEach((item) => { + let movieDiv = document.querySelector('#all-movies'); + let theMovie = document.createElement('p'); + movieDiv.appendChild(theMovie); + let currentMovie = document.createTextNode(item.title + ' by : ' + item.director); + theMovie.appendChild(currentMovie); + }); + + document.querySelector('#movies-number').innerText = movie.length; +} +*/ +//showMovies(movies); + +let myMovies = { + title : 'The Seven Samurai', + director : 'Akira Kurosawa', + type : 'horror', + haveWatched : true +}; + +function addMovie(movie) { + movies.push(movie); +} + +function showMovies(movie) { + movie.forEach((item) => { + let movieDiv = document.querySelector('#all-movies'); + let theMovie = document.createElement('p'); + movieDiv.appendChild(theMovie); + let currentMovie = document.createTextNode(item.title + ' by : ' + item.director); + setTimeout(function() { + theMovie.appendChild(currentMovie); + }, 1000); + }); + document.querySelector('#movies-number').innerText = movie.length; +} + +setTimeout(addMovie(myMovies), 2000); +showMovies(movies); +/* +Create a form anywhere on your page.The form should have + - 4 input text fields, one for each property of your movie object + - a "save" button. +When the button is clicked + - The field values should be used to create a new movie object literal + - The new movie is then added to the list of movies and gets displayed on your page +TIP: Use the functions you created on tasks 1 - 3*/ + +let movieForm = document.createElement('FORM'); +movieForm.setAttribute('id', 'myForm'); +document.body.appendChild(movieForm); +document.querySelector('#myForm').style.backgroundColor = 'aqua'; +document.querySelector('#myForm').style.display = 'flex'; + +let titelLabel = document.createElement('label'); +titelLabel.innerText = 'Enter Movie titel : '; +document.querySelector('#myForm').appendChild(titelLabel); + +let titelInput = document.createElement('INPUT'); +titelInput.setAttribute('type', 'text'); +titelInput.setAttribute('id', 'movieTitel'); +document.querySelector('#myForm').appendChild(titelInput); + +let breakLine = document.createElement('br'); +document.querySelector('#myForm').appendChild(breakLine); + +let dirlabel = document.createElement('label'); +dirlabel.innerText = 'Enter Movie Director:'; +document.querySelector('#myForm').appendChild(dirlabel); + +let dirInput = document.createElement('INPUT'); +dirInput.setAttribute('type', 'text'); +dirInput.setAttribute('id', 'dir'); +document.querySelector('#myForm').appendChild(dirInput); + +let breakLine1 = document.createElement('br'); +document.querySelector('#myForm').appendChild(breakLine1); + +let typeLabel = document.createElement('label'); +typeLabel.innerText = 'Enter Movie Type : '; +document.querySelector('#myForm').appendChild(typeLabel); + +let typeInput = document.createElement('INPUT'); +typeInput.setAttribute('type', 'text'); +typeInput.setAttribute('id', 'movieType'); +document.querySelector('#myForm').appendChild(typeInput); + +let breakLine3 = document.createElement('br'); +document.querySelector('#myForm').appendChild(breakLine3); + +let haveWatchLabel = document.createElement('label'); +haveWatchLabel.innerText = 'Select if you have Watched the Movie : '; +document.querySelector('#myForm').appendChild(haveWatchLabel); + +let watchOption = document.createElement('input'); +watchOption.setAttribute('type', 'checkbox'); +watchOption.setAttribute('id', 'movieWatched'); +document.querySelector('#myForm').appendChild(watchOption); + +let breakLine4 = document.createElement('br'); +document.querySelector('#myForm').appendChild(breakLine4); +let saveButton = document.createElement('button'); + +saveButton.setAttribute('id', 'saveButton'); +var butonText = document.createTextNode('Save'); +saveButton.appendChild(butonText); +document.querySelector('#myForm').appendChild(saveButton); + +let submitButton = document.querySelector('#saveButton'); +document.querySelector('#saveButton').style.backgroundColor = 'lightblue'; +submitButton.addEventListener('click', validate); +let valid = true; +//let titleValue = +document.document.querySelector('#movieTitel').style.backgroundColor = 'green'; + +let directorValue = document.querySelector('#movieDirector'); +directorValue.style.backgroundColor = 'transparent'; + +let typeValue = document.querySelector('#movieType'); +typeValue.style.backgroundColor = 'transparent'; + +let watchValue = document.querySelector('#movieWatched'); +watchValue.style.backgroundColor = 'transparent'; + +function validate() { + let newMovieTitle = document.querySelector('#movieTitel').value; -// create showMovies function + let newMovieDirector = document.querySelector('#dir').value; + let newMoviesTtype = document.querySelector('#movieType').value; + let newMovieWatched = true; + if (document.querySelector('#movieWatched').value !== 'on') { + newMovieWatched = false; + } -// create a new movie object for your favorite movie + let newVideo = { + title : newMovieTitle, + director : newMovieDirector, + type : newMoviesTtype, + haveWatched : newMovieWatched + }; + //alert(newVideo.title + ' ' + newVideo.director + ' ' + newVideo.type + ' ' + newVideo.haveWatched); + //movies[length - 1] = newVideo; + alert(movies); + showMovies(movies); -// create addMovies function + // Blank out (make empty) all the text fields + titleValue.value = ''; + typeValue.value = ''; + watchValue.value = ''; +} diff --git a/Week-3/InClass/DOM-practice/main.js b/Week-3/InClass/DOM-practice/main.js index be9f609..1fe8f1c 100644 --- a/Week-3/InClass/DOM-practice/main.js +++ b/Week-3/InClass/DOM-practice/main.js @@ -1,25 +1,32 @@ -console.log("Testing JS file loaded!") +console.log('Testing JS file loaded!'); // Task 1 // Without changing any of the HTML or CSS, update the
tags so that they have white backgrounds. - - - - - -// Task 2 +let pageSections = document.querySelectorAll('section'); +for (var i = 0; i < pageSections.length; i++) { + pageSections[i].style.backgroundColor = 'white'; +} // Without changing any of the HTML or CSS, update the images on the page so that they are all centered. - -// Hint: look at the CSS to see if there are any classes already written which you can use. - - - - - - +let pageImages = document.querySelectorAll('img'); +for (var i = 0; i < pageImages.length; i++) { + pageImages[i].style.display = 'block'; + pageImages[i].style.marginLeft = 'auto'; + pageImages[i].style.marginRight = 'auto'; +} // Task 3 // Google the date of birth and death of each of the people on the page. Without changing any of the HTML or CSS, add this in a paragraph to the end of their
. +//9 December 1906 -> 1 January 1992 +//26 August 1918->24 February 2020 +//10 December 1815 -> 27 November 1852 +let grreaceDobDod = document.createTextNode('(9 December 1906 / 1 January 1992)'); +pageSections[0].appendChild(grreaceDobDod); + +let KatherineDobDod = document.createTextNode('26 August 1918 / 24 February 2020)'); +pageSections[1].appendChild(KatherineDobDod); + +let adaDobDod = document.createTextNode('(10 December 1815 / 27 November 1852)'); +pageSections[2].appendChild(adaDobDod);