Sha256: 2498f8088d7417a0617e95ae518eae696a0a8a0a745441ea79db919a5003ddf6
Contents?: true
Size: 1.14 KB
Versions: 8
Compression:
Stored size: 1.14 KB
Contents
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Animate Visual Test : Animate color rgb</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 randomColorRGB() { return 'rgb(' + Math.floor(Math.random()*256) + ', ' + Math.floor(Math.random()*256) + ', ' + Math.floor(Math.random()*256) + ')'; } $(function() { $("#go").click(function() { $("#animate-color").stop().animate({ color: randomColorRGB() }, "fast"); }); }) </script> <style type="text/css"> #animate-color { width: 250px; height: 100px; color: gray; } </style> </head> <body> <div id="animate-color">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</div> <button id="go">Go</button> </body> </html>
Version data entries
8 entries across 7 versions & 1 rubygems