Предыдущая версия справа и слеваПредыдущая версияСледующая версия | Предыдущая версия |
money [2024/09/05 16:45] – novik | money [2024/09/18 20:57] (текущий) – novik |
---|
<html> <script> alert("Правила: копите деньги и прокачиваетесь, в минус можно уходить до -100, далее вы проиграете!") var score = 10000; updating = 1; function clickBtn() { | <html> <style> |
| h2 { |
<code> | font-family: 'Pangolin', cursive; |
score = score + updating; | } |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | button { |
| background: linear-gradient(to bottom,rgba(120, 107, 175, .5), rgba(40, 140, 255,.3)); |
</code> | background-color: transparent; |
| background-repeat: no-repeat; |
} function update() { | background-position: center; |
| padding: 20px; |
<code> | border-radius:20px; |
score = score - 100; | text-decoration: none; |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | font-family: Titillium, Arial, sans-serif; |
if1(); | font-weight: 700; |
updating += 1; | color: white; |
| text-shadow: 2px 2px 4px rgba(0,0,0,1); |
</code> | text-transform:uppercase; |
| font-size: .9em; |
} function update1() { | letter-spacing: .1em; |
| margin-right: 5px; |
<code> | margin-left: 20px; |
score = score - 150; | cursor: pointer; |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | } |
if1(); | input { |
updating += 2; | margin: 5px; |
| border-radius:20px; |
</code> | cursor: pointer; |
| padding: 10px; |
} function update2() { | } |
| main.main { |
<code> | background-color: rgba(77, 117, 247, 0.5); |
score = score - 250; | margin: 0 auto; |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | width: 60%; |
if1(); | } |
updating += 3; | .img { |
| float: right; |
</code> | width: 30%; |
| margin-top: -250px; |
} function update3() { | margin-right: 10px; |
| } |
<code> | h1 img { |
score = score - 500; | width: 30px; |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | margin-bottom: -5px; |
if1(); | } |
updating += 10; | h1, h2 { |
| text-align: center; |
</code> | |
| |
} function auto() { | |
| |
<code> | |
score = score - 10000; | |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | |
if1(); | |
setTimeout("plusauto()", 1000); | |
| |
</code> | |
| |
} function if1 () { | |
| |
<code> | |
if (score <-100) { | |
document.write("Вы проиграли, так-как вы превысили лимит кредита"); | |
} | } |
| |
</code> | @media (max-width:1000px) { |
| main { |
} function plusauto () { | width: 90%; |
| height: 1500px; |
<code> | } |
score += updating; | .img { |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | width: 37%; |
setTimeout("auto1()", 1000); | margin-top: 0; |
| } |
</code> | h1, h2 { |
| font-size: 100px; |
} function auto1 () { | margin: 0; |
| } |
<code> | button, input { |
score += updating; | font-size: 50px; |
setTimeout("plusauto()", 1000); | } |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | h1 img { |
| width: 80px; |
</code> | } |
| |
} function pashalka () { | |
| |
<code> | |
score += 10000; | |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | |
| |
</code> | |
| |
} function reboot () { | |
| |
<code> | |
alert("Ваш уровень прокачки " + updating + ". Ваш баланс " + score + " ."); | |
| |
</code> | |
} | } |
| </style> |
| |
</script> <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <body> <main> <h2>Игра кликер</h2> <h1 id ="score">0$<img src="img/coins.png"></h1> <button id="clickbtn" onclick="clickBtn()">+$</button> <br><input type="button" value="Прокачать на 1 уровень|-100$" onclick="update()"> <br><input type="button" value="Прокачать на 2 уровня|-150$" onclick="update1()"> <br><input type="button" value="Прокачать на 3 уровня|-250$" onclick="update2()"> <br><input type="button" value="Прокачать на 10 уровней|-500$" onclick="update3()"> <br><input type="button" value="Автокликер|-10000$" onclick="auto()"> <br><input type="button" value="Подробнее" onclick="reboot()"> <img src="img/profit.png" class="img" onclick="pashalka()"> </main> </body> </html> // | <script> var score = 0; updating = 1; function clickBtn() { score = score + updating; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; } function update() { score = score - 100; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; if1(); updating += 1;} |
| |
| function update1() { score = score - 150; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; if1(); updating += 2; } function update2() { score = score - 250; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; if1(); updating += 3; } function update3() { score = score - 500; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; if1(); updating += 10; } function auto() { score = score - 10000; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; if1(); setTimeout("plusauto()", 1000); } function if1 () { if (score <-100) { |
| document.write("Вы проиграли, так-как вы превысили лимит кредита"); |
| } } function plusauto () { score += updating; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; setTimeout("auto1()", 1000); } function auto1 () { score += updating; setTimeout("plusauto()", 1000); document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; } function pashalka () { score += 10000; document.getElementsByTagName("h1")[0].firstChild.data = score + "$ Уровень: " + updating ; } function reboot () { alert("Ваш уровень прокачки " + updating + ". Ваш баланс " + score + " ."); } </script> <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <body> <main class="main"> <h2>Игра кликер</h2> <p>Правила: копите деньги и прокачиваетесь, в минус можно уходить до -100, далее вы проиграете!</p> <h1 id ="score">0$ Уровень: 1</h1> <button id="clickbtn" onclick="clickBtn()">+$</button> <br> <input type="button" value="Прокачать на 1 уровень|-100$" onclick="update()"> <br> <input type="button" value="Прокачать на 2 уровня|-150$" onclick="update1()"> <br> <input type="button" value="Прокачать на 3 уровня|-250$" onclick="update2()"> <br> <input type="button" value="Прокачать на 10 уровней|-500$" onclick="update3()"> <br> <input type="button" value="Автокликер|-10000$" onclick="auto()"> <br> <img src="img/profit.png" class="img" onclick="pashalka()"> </main> </body> </html> |