STIMED.js

STIMED.jsは一定の時間経過等、時間でCSSを制御するスクリプトです。jQueryに依存します。指定方法は以下のような感じ。
stimed.style.create([
{target:'body', time:'00:00', property:'background-color', value:'#fff'},
{target:'body', time:'18:00', property:'background-color', value:'#000'},
{target:'body', time:'24:00', property:'background-color', value:'#fff'}
]);
昼と夜でコントラストを変えたり、要素の色を変えたり、画像を変えたり、要素を動かしたり、とアイデアは豊富です。transition-delay等じゃサポートしきれない仕様に対応できるのは良いですね。念の為備忘録として。ライセンスはMIT。
