Netvibes / Time-dependent Wallpapers (à la iGoogle Themes)

Subscribe to Netvibes / Time-dependent Wallpapers (à la iGoogle Themes) 4 posts, 2 voices

 
dexter crowley User

Now that the NV staff added more customization features, it would be great if we could port some of iGoogle's themes that change during the hours for Netvibes.

Basically we would need a script that modifies the background-image:url of the topPart DIV according to the current time and possibly also adjusts the header height...

Anyone to help? :)

 
dexter crowley User

No ideas? I'm having a difficult time figuring this out myself...

 
alien_scum Scriptwright I don't use Netvibes so you are on your own for the CSS but here is a shot at some code
var cols=[[5,'#abd'],[20,'#000'],[24,'#dba']];
var now = new Date().getHours();
for(var i=0;col=cols[i++];) if (col[0]>now) break;
GM_addStyle('* {background-color:'+col[1]+' !important}');
cols holds the times and colours in pairs [endtime,'#colour']
GM_addStyle just adds some CSS to the page
hope this is helpful
 
dexter crowley User

It's mainly the CSS part that I'm having problems with...