1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| <!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <title>animated-bg</title> <link href="http://cdn.bootcss.com/normalize/3.0.3/normalize.min.css" rel="stylesheet"> <script src="http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script> <script src="http://www.bitstorm.org/jquery/color-animation/jquery.animate-colors-min.js"></script> <style type="text/css"> html, body { height: 100%; width: 100%; background: #654e9c; } </style> </head>
<body> <script> $(document).ready(function() { $('body').each(function() { var $this = $(this), colors = ['#ec008c', '#00bcc3', '#5fb26a', '#fc7331']; setInterval(function() { var color = colors.shift(); colors.push(color); $this.animate({ backgroundColor: color }, 2000); }, 4000); }); }) </script> </body>
</html>
|