const mydate = new Date();const hours = ((mydate.getHours() + 11) % 12) + 1;const minutes = mydate.getMinutes();const seconds = mydate.getSeconds();const hdegree = hours * 30;const mdegree = minutes * 6;const sdegree = seconds * 6;
题主的问题是什么?