5

我正在开发一个 Web 应用程序,我必须在其中显示温度、湿度、风速、风向等。我正在使用 google.visualization.Gauge() 来显示其他内容,但我想在指南针上显示风向。有谁知道我可以用于网站/webapp 的任何(jQuery/javascript/etc)指南针?谢谢

4

2 回答 2

5

这是我只使用 CSS 的方法。使用变换来旋转针。DEMO你也可以使用jQuery Rotate插件。

HTML

<div id="compass">
  <div id="arrow"></div>
</div>​

CSS

#compass {
  width: 380px;
  height: 380px;
  background-image:url('http://i.imgur.com/44nyA.jpg');
  position: relative;
}
#arrow {
  width: 360px;
  height: 20px;
  background-color:#F00;
  position: absolute;
  top: 180px;
  left: 10px;
  -webkit-transform:rotate(120deg);
  -moz-transform:rotate(120deg);
  -o-transform:rotate(120deg);
  -ms-transform:rotate(120deg);

  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

#compass:hover #arrow {
  -webkit-transform:rotate(0deg);
  -moz-transform:rotate(0deg);
  -o-transform:rotate(0deg);
  -ms-transform:rotate(0deg);
}​
于 2012-07-17T16:11:44.067 回答
1

HTML5 和它的 Canvas 将很快完成这项工作。

http://www.tutorialspoint.com/html5/canvas_drawing_lines.htm

我只是为了完整起见将其发布在这里,我个人仍然会坚持使用 javascript 库。

于 2012-07-17T16:02:25.160 回答