-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
34 lines (22 loc) · 1.3 KB
/
script.js
File metadata and controls
34 lines (22 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
$(document).ready(function() {
var magic8Ball = {};
magic8Ball.listOfAnswers = ["It is certain", "It is decidedly so", "Without a doubt", "Yes ~ definitely", "You may rely on it", "As I see it, yes", "Most likely", "Outlook good", "Yes", "Signs point to yes", "Reply hazy, try again", "Ask again later", "Better not tell you now", "Cannot predict now", "Concentrate and ask again", "Don't count on it", "My reply is no", "My sources say no", "Outlook not so good", "Very doubtful"];
$("#answer").hide();
var onClick = function() {
$("#answer").hide();
$("#eightball").attr("src", "https://s3.amazonaws.com/media.skillcrush.com/skillcrush/wp-content/uploads/2016/09/8side.png");
setTimeout( function() {
var question = prompt("ASK A YES/NO QUESTION!");
$("#eightball").effect("shake");
magic8Ball.askMagic8Ball(question);
}, 500);
};
magic8Ball.askMagic8Ball = function(question) {
$("#eightball").attr("src", "https://s3.amazonaws.com/media.skillcrush.com/skillcrush/wp-content/uploads/2016/09/answerside.png");
$("#answer").fadeIn(4000);
var randomNumber = Math.random() * this.listOfAnswers.length;
var randomIndex = Math.floor(randomNumber);
$("#answer").text(this.listOfAnswers[randomIndex] + ".");
};
$("#questionButton").click(onClick);
});