Main Menu

Recent posts

#1
General Discussion / Re: Color
Last post by Mark - January 23, 2012, 07:18:18 PM
Here is one way to do it in JavaScript.


<html>
<body>
<script type="text/javascript">
var intRed=Math.floor(Math.random()*256) // generates a random number between 0 and 255
var intGreen=Math.floor(Math.random()*256)
var intBlue=Math.floor(Math.random()*256)
var strHexRed = intRed.toString(16); // converts the number to hex
var strHexGreen = intGreen.toString(16);
var strHexBlue = intBlue.toString(16);
// make the value two characters wide so red, green, and blue each take two characters in the RGB value
if (strHexRed.length == 1) { strHexRed="0"+strHexRed; }
if (strHexGreen.length == 1) { strHexGreen="0"+strHexGreen; }
if (strHexBlue.length == 1) { strHexBlue="0"+strHexBlue; }
var strRGB=strHexRed+strHexGreen+strHexBlue; // joins the three string vales to make a RGB value
document.body.bgColor=strRGB;
document.write("The background page color is "+strRGB+"\n");
</script>
</body>
</html>
#2
General Discussion / Re: Color
Last post by Brady - January 23, 2012, 07:14:02 PM
How do you make the background color change randomly in JavaScript?
#3
General Discussion / Re: Color
Last post by Mark - June 07, 2008, 05:18:26 PM
Here is one way you can randomly change the background color in PHP.


<?php
print "<html>\n";
$intRed rand(0,255); // generates a random number between 0 and 255
$intGreen rand(0,255);
$intBlue rand(0,255);
$hexRed dechex($intRed+0); // converts the number to hex
$hexGreen dechex($intGreen+0);
$hexBlue dechex($intBlue+0);
$strRed=$hexRed;
// makes the value two characters wide so red, green, and blue each take two characters in the RGB value
if (strlen($strRed) == 1) { $strRed="0".$strRed; }
$strGreen=$hexGreen;
if (
strlen($strGreen) == 1) { $strGreen="0".$strGreen; }
$strBlue=$hexBlue;
if (
strlen($strBlue) == 1) { $strBlue="0".$strBlue; }
$hexRGB=$strRed.$strGreen.$strBlue// joins the three string vales to make a RGB value
print "<body bgcolor=$hexRGB>\n";
print 
"The background page color is $hexRGB\n";
print 
"</body>\n";
print 
"</html>\n";
?>

#4
General Discussion / Color
Last post by Brady - June 07, 2008, 05:11:28 PM
How do you make a background page color change randomly in PHP?

Entrylevelprogrammer.com