js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
random color in javascript
var randomColor = Math.floor(Math.random()*16777215).toString(16);
random color code js
Math.floor(Math.random()*16777215).toString(16);
random color generator css,javascript,html
//Javascript
function randomColor(){
var color = "#";
var randomHex = "123456ABCDEF";
for(var i = 0; i<6;i++){
color+= randomHex[Math.floor(Math.random()*16)]
}
return color;
}
var mytimer ;
function setColor(){
$("body").css("background-color", randomColor);
}
var mytimer = setInterval(setColor, .8000);
// html
!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
//include javascript file.
</body>
</html>
function to generate random color in javascript
function random(number){
return Math.floor(Math.random()*number);;
}
function randomColor(){
return 'rgb('+random(255)+','+random(255)+','+random(255)+')';
}
js generate random color
function get_random_color()
{
var color = "";
for(var i = 0; i < 3; i++) {
var sub = Math.floor(Math.random() * 256).toString(16);
color += (sub.length == 1 ? "0" + sub : sub);
}
return "#" + color;
}
function get_rand_color()
{
var color = Math.floor(Math.random() * Math.pow(256, 3)).toString(16);
while(color.length < 6) {
color = "0" + color;
}
return "#" + color;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us