文字闪烁

来源:互联网 发布:mac文稿和照片区别 编辑:程序博客网 时间:2024/04/29 12:14
注意需要引入jqueryfunction shakeTopText(id){$(id).css("color", randomColor());}function loadTopText(id, time) {setInterval("shakeTopText('"+id+"')", time);}function randomColor() {var R = parseInt(255 * Math.random());var G = parseInt(255 * Math.random());var B = parseInt(255 * Math.random());R = R.toString(16);G = G.toString(16);B = B.toString(16);if (R.length == 1)R = "0" + R;if (G.length == 1)G = "0" + G;if (B.length == 1)B = "0" + B;return("#" + R + G + B);}window.onload=function(){loadTopText("#wyj",500);}

0 0