5

温度、湿度、風速、風向などを表示する必要がある Web アプリケーションに取り組んでいます。他のものを表示するために google.visualization.Gauge() を使用していますが、コンパスで風向を表示したいと考えています。ウェブサイト/ウェブアプリに使用できる(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 とそのキャンバスは、これを簡単に処理できます。

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

完全を期すためにここに投稿しているだけですが、個人的にはまだJavaScriptライブラリに固執しています。

于 2012-07-17T16:02:25.160 に答える