課程
/前端開發(fā)
/Html5
/炫麗的倒計時效果Canvas繪圖與動畫基礎
var seconds=curShowTimeSeconds%60;
為什么要取余數?curShowTimeSeconds是整總的秒數,%60之后得到了什么?
2017-03-14
源自:炫麗的倒計時效果Canvas繪圖與動畫基礎 3-3
正在回答
curShowTimeSeconds%60取余數,得到的余數就是不足1分鐘的秒數,就是最后要顯示的秒數
舉報
學習HTML5中最激動人心的技術Canvas,徹底釋放自己的創(chuàng)造力
1 回答為什么不直接使用curShowTimeSeconds = getCurShowTimeSeconds()
4 回答直接修改curShowTimeSeconds為什么不出效果,不明白
2 回答為什么不直接把curShowTimeSeconds = getCurrentShowTimeSeconds();放到render函數中
1 回答nextShowTimeSeconds和curShowTimeSeconds調用的函數相同,為何返回值會不同,
1 回答nextShowTimeSeconds和curShowTimeSeconds不是一樣的嗎?都是getCurrentShowTimeSeconds()的值,為什么還要比較?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優(yōu)惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2017-03-15
curShowTimeSeconds%60取余數,得到的余數就是不足1分鐘的秒數,就是最后要顯示的秒數