Answers for "random color hex javascript"

27

js random hex color

'#'+Math.floor(Math.random()*16777215).toString(16);
Posted by: Guest on February-25-2020
6

random color in javascript

var randomColor = Math.floor(Math.random()*16777215).toString(16);
Posted by: Guest on June-12-2020
1

random color code js

Math.floor(Math.random()*16777215).toString(16);
Posted by: Guest on February-08-2021
2

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>
Posted by: Guest on April-05-2020
0

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)+')';    
}
Posted by: Guest on August-24-2021
0

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;
}
Posted by: Guest on December-22-2020

Code answers related to "random color hex javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language