Created
June 6, 2016 11:43
-
-
Save pashagray/abf4ef7fdc691d1d7d3617d7d894b105 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<script type="text/javascript"> | |
var forecasts = [ | |
'Вас всегда будут преследовать беды и неудачи!', | |
'Лучше сидите дома, удача явно повернута к вам жопой', | |
'Хокку. Сосулька висит, сосулька ждет, череп не крепкий.', | |
'Тут плохое предсказание... Лучше попробуйте еще раз' | |
] | |
function selectForecast() { | |
return forecasts[Math.floor(Math.random() * (forecasts.length)) + 0]; | |
} | |
function pasteForecast() { | |
document.getElementById("forecast").textContent = selectForecast(); | |
} | |
</script> | |
</head> | |
<body> | |
<button onclick="pasteForecast()">Предсказание</button> | |
<h1 id="forecast"></h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment