有没有人知道如何在HTML5画布上顺序执行以下操作(使用javascript)。
我觉得这么难做的原因是因为无法在脚本中创建暂停。任何帮助将不胜感激!
答案 0 :(得分:6)
function flashyText() {
var count = 10,
timer = setInterval(function() {
count--;
if( count%2 == 1) {
// draw the text
}
else {
// don't draw it (ie. clear it off)
}
if( count == 0) clearInterval(timer);
},1000);
}
类似的东西。