Newer
Older
Guidance / course-selection / project.js
@HIROSE Yuuji HIROSE Yuuji on 20 Nov 2018 216 bytes Add dir of course-selection/
/*
 * js tricks for trivial motion in presentation
 */

function light(me) {
    me.style.backgroundColor = "#ff9";
    // me.style.fontSize = "150%";
    me.style.color = "#f00";
    me.style.transition = "2.0s";
}