Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
microjs 中的任何库似乎都不够。ender 的morpheus 在fadeIn 和fadeOut 中也不好。
你会展示如何fadeIn() fadeOut() stop()使用 requestAnimationFrame 构建函数吗?
fadeIn() fadeOut() stop()
好的
所以我会向你展示淡出,因为我已经有一段时间没有这样做了,这可能是一个失败的演示,但你应该明白这一点。
setInterval(function(){ var x = new Image(); x.src = 'x.png'; if (x.alpha >0){ x.alpha-=.01; } },100);
此外,这仅在您已经拥有 html5 画布时才有效
不过你应该明白
享受 =]