我正在尝试制作一个css3时钟和javascript我只给了我24小时的时间,但我需要12小时时间这里是代码http://codepen.io/anon/pen/DmlJi
答案 0 :(得分:0)
根据你的笔,就像这样。
drawHour : function(time){
var offset = 0;
if (time[0] > 12){
offset = 12;
}
this.drawDigits(this.hour, time[0]-offset);
}