Last active
December 27, 2015 09:39
-
-
Save meesern/7305732 to your computer and use it in GitHub Desktop.
Smooth colour rgb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.2/prototype.js"></script> | |
<script src="http://mbostock.github.com/d3/d3.v2.min.js"></script> | |
<!--<link rel="stylesheet" href="style.css"/>--> | |
</head> | |
<body> | |
</body> | |
<script src="smoothcolour.js"></script> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Basic setup | |
function setup() | |
{ | |
update(); | |
//schedule_update(); | |
} | |
var timer; | |
function schedule_update() | |
{ | |
clearTimeout(timer); | |
timer=setTimeout("update()",500); | |
} | |
function update() | |
{ | |
d3.select('body').style('background',"blue"); | |
} | |
setup(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment