Rolling dice

Developer
Size
1,889 Kb
Views
10,120

How do I make an rolling dice?

UTF-8 dice and setInterval. What is a rolling dice? How do you make a rolling dice? This script and codes were developed by Josep Llodrà on 16 January 2023, Monday.

Rolling dice Previews

Rolling dice - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Rolling dice</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <!-- https://twitter.com/josep_llodra -->
<div>Click on the dice...</div>
<div id="dice" onclick="javascript:stopstart()"></div> <script src="js/index.js"></script>
</body>
</html>

Rolling dice - Script Codes CSS Codes

body { text-align: center; font-family: Helvetica, sans-serif;
}
#dice { font-size: 320px;
}
#dice:hover { cursor: pointer;
}

Rolling dice - Script Codes JS Codes

var dice;
var dices = ['&#9856;', '&#9857;', '&#9858;', '&#9859;', '&#9860;', '&#9861;' ];
var stopped = true;
var t;
function change() { var random = Math.floor(Math.random()*6); dice.innerHTML = dices[random];
}
function stopstart() { if(stopped) { stopped = false; t = setInterval(change, 100); } else { clearInterval(t); stopped = true; }
}
window.onload = function() { dice = document.getElementById("dice"); stopstart();
}
Rolling dice - Script Codes
Rolling dice - Script Codes
Home Page Home
Developer Josep Llodrà
Username jllodra
Uploaded January 16, 2023
Rating 3
Size 1,889 Kb
Views 10,120
Do you need developer help for Rolling dice?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Josep Llodrà (jllodra) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!