-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
43 lines (33 loc) · 2.08 KB
/
main.js
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
35
36
37
38
39
40
41
42
43
var customName = document.getElementById('#customname');
var randomize = document.querySelector('.randomize');
var story = document.querySelector('.story');
function randomValueFromArray(array){
return array[Math.floor(Math.random()*array.length)];
}
var storyText = 'It was 94 farenheit outside, so :insertx: went for a walk. When they got to :inserty:, they stared in horror for a few moments, then :insertz:. Bob saw the whole thing, but was not surprised — :insertx: weighs 300 pounds, and it was a hot day.'
var insertX = ['Willy the Goblin','Big Daddy','Father Christmas'];
var insertY = ['the soup kitchen','Disneyland' ,'the White House'];
var insertZ = ['spontaneously combusted' ,'melted into a puddle on the sidewalk' ,'turned into a slug and crawled away'] ;
randomize.addEventListener('click', result);
function result() {
var newStory = storyText;
var xItem = randomValueFromArray(insertX);
var yItem = randomValueFromArray(insertY);
var zItem = randomValueFromArray(insertZ);
newStory = newStory.replace(':insertx:',xItem);
newStory = newStory.replace(':insertx:',xItem);
newStory = newStory.replace(':inserty:',yItem);
newStory = newStory.replace(':insertz:',zItem);
if(customName.value !='') {
var name = customName.value;
newStory = newStory.replace('Bob',name);
}
if(document.getElementById("uk").checked) {
var weight = Math.round(300*0.071429)+'stones';
newStory = newStory.replace('300 pounds',weight);
var temperature = Math.round(((94-32)*5)/9)+'centigrade';
newStory = newStory.replace('94 farenheit',temperature);
}
story.textContent = newStory;
story.style.visibility = 'visible';
}