jquery-ui/tests/visual/animate/animate_backgroundColor_rgb.html

35 lines
1000 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Animate Visual Test : Animate backgroundColor rgb</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css">
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../../../ui/jquery.effects.core.js"></script>
<script type="text/javascript">
function randomColorRGB() {
return 'rgb('
+ Math.floor(Math.random()*256)
+ ', ' + Math.floor(Math.random()*256)
+ ', ' + Math.floor(Math.random()*256)
+ ')';
}
$(function() {
$("#go").click(function() {
$("#animate-backgroundColor").stop().animate({ backgroundColor: randomColorRGB() }, "fast");
});
})
</script>
<style type="text/css">
#animate-backgroundColor { width: 100px; height: 100px; background-color: gray; }
</style>
</head>
<body>
<div id="animate-backgroundColor"></div>
<button id="go">Go</button>
</body>
</html>