Код: Выделить всё
Dice Roller
Dice Roller
Can't decide on what to eat? Or what to do? Our dice roller is perfect for this.
Roll
var x = rollDice(1, 6);
output.innerHTML = x;
Код: Выделить всё
function rollDice(a, b) {
dice = Math.floor(Math.random() * (b + 1)) + a
return dice
}
Код: Выделить всё
body {
background-color: orange;
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-align: center;
font-size: 150%;
}
.roll-button {
height: 40px;
width: 80px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: large;
}
Подробнее здесь: https://stackoverflow.com/questions/793 ... pt-to-html