Sha256: 0d921be55c2cab529975c50ea80dbf82e90a2fa9aa64f1d377f20c36a66663e3
Contents?: true
Size: 1.22 KB
Versions: 8
Compression:
Stored size: 1.22 KB
Contents
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Animate Visual Test : Animate backgroundColor hex</title> <link rel="stylesheet" href="../visual.css" type="text/css" /> <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css"> <script type="text/javascript" src="../../../jquery-1.5.1.js"></script> <script type="text/javascript" src="../../../ui/jquery.effects.core.js"></script> <script type="text/javascript"> function hexFromRGB (r, g, b) { var hex = [ r.toString(16), g.toString(16), b.toString(16) ]; $.each(hex, function (nr, val) { if (val.length == 1) { hex[nr] = '0' + val; } }); return hex.join('').toUpperCase(); } function randomColorHex() { return '#' + hexFromRGB(Math.floor(Math.random()*256), Math.floor(Math.random()*256), Math.floor(Math.random()*256)); } $(function() { $("#go").click(function() { $("#animate-backgroundColor").stop().animate({ backgroundColor: randomColorHex() }, "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>
Version data entries
8 entries across 7 versions & 1 rubygems