ARTSPEAKNYC Posted June 27, 2020 Share Posted June 27, 2020 Site URL: http://www.artspeak.nyc hello @tuanphan i am using 7.1 so how can i add this code to my squarespace web site. seems like doesnt work. https://www.computerhope.com/javascript/random-color.htm Thank you in advance. have a great weeknd. Link to comment
rwp Posted June 27, 2020 Share Posted June 27, 2020 jQuery, see instructions in my signature for setting this up. $(document).ready(function() { var col = ["#FFCCCC", "#CCAFFF", "#A6BEFF", "#99FFFF", "#D5CCBB", "#99FF99", "#FFFF99", "#FFCC99", "#CCCCCC"]; var i = 0; changeColor(); function changeColor() { $('body').attr('style', 'background-color: ' + col[i] + ''); if (i < 8) { i++; } else { i = 0; } setTimeout(changeColor, 5000); } }); Link to comment
brunipietro Posted September 22, 2021 Share Posted September 22, 2021 Hi rwp i have been trying your code and it works ...question is there a way to fade color into one another ? thanks Link to comment
Fordham Posted October 12, 2021 Share Posted October 12, 2021 Hi, I would like to get this to work... I can't find any instructions in your signature. Apologies if i'm not looking in the right place. Thanks! G Link to comment
tuanphan Posted October 13, 2021 Share Posted October 13, 2021 19 hours ago, Fordham said: Hi, I would like to get this to work... I can't find any instructions in your signature. Apologies if i'm not looking in the right place. Thanks! G Add the code to Settings > Advanced > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function() { var col = ["#FFCCCC", "#CCAFFF", "#A6BEFF", "#99FFFF", "#D5CCBB", "#99FF99", "#FFFF99", "#FFCC99", "#CCCCCC"]; var i = 0; changeColor(); function changeColor() { $('body').attr('style', 'background-color: ' + col[i] + ''); if (i < 8) { i++; } else { i = 0; } setTimeout(changeColor, 5000); } }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment