1

我是 jquery 和 javascript 的新手。我已经按照http://css-tricks.com/css3-clock/中的描述创建了 css 旋转时钟。正常情况下,此时钟使用 JScript Date().getSecond() 方法获取本地机器时间。有什么方法可以仅使用 javascript 或 jquery 使用小时/分钟下拉菜单手动设置时间。这是旋转时钟指针的代码。

<script type="text/javascript">

    $(document).ready(function() {

          setInterval( function() {
          var seconds = new Date().getSeconds();
          var sdegree = seconds * 6;
          var srotate = "rotate(" + sdegree + "deg)";

          $("#sec").css({"-moz-transform" : srotate, "-webkit-transform" : srotate});

          }, 1000 );


          setInterval( function() {
          var hours = new Date().getHours();
          var mins = new Date().getMinutes();
          var hdegree = hours * 30 + (mins / 2);
          var hrotate = "rotate(" + hdegree + "deg)";

          $("#hour").css({"-moz-transform" : hrotate, "-webkit-transform" : hrotate});

          }, 1000 );


          setInterval( function() {
          var mins = new Date().getMinutes();
          var mdegree = mins * 6;
          var mrotate = "rotate(" + mdegree + "deg)";

          $("#min").css({"-moz-transform" : mrotate, "-webkit-transform" : mrotate});

          }, 1000 );


    }); 

</script>

我想使用下拉菜单更改 Hour/Min 变量。请帮忙。

4

1 回答 1

1
function setTime(hours, minutes, seconds) {
    $("#hour").css({"-moz-transform" : "rotate(" + (hours * 30 + (minutess / 2)) + "deg)", "-webkit-transform" : "rotate(" + (hours * 30 + (minutes / 2)) + "deg)"});
    $("#min").css({"-moz-transform" : "rotate(" + (minutes * 6) + "deg)", "-webkit-transform" : "rotate(" + (minutes * 6) + "deg)"});
    $("#sec").css({"-moz-transform" : "rotate(" + (seconds * 6) + "deg)", "-webkit-transform" : "rotate(" + (seconds * 6) + "deg)"});
}

应该可以工作但没有测试过。自己实现这个下拉菜单。

于 2013-04-23T13:16:16.757 回答