好吧~给你个代码示例:
<div id="ceshi">这里是闪烁的字体!</div>
<script>
(function(){
var text=document.getElementById("ceshi");
function color(){
if(text.style.color=="red"){
text.style.color="yellow";
}
else{
text.style.color="red";
}
setTimeout(function(){
color();
},200);
}
color();
})();
</script>
不懂的话再问我吧~