Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 21st, 2012  |  syntax: None  |  size: 0.72 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. html
  2.   head
  3.     script type="text/javascript" src="dygraph-combined.js"
  4.     link rel="stylesheet" href="screen.css" type="text/css"
  5.     title My Body
  6.  
  7.   body
  8.     javascript:
  9.       opts = {
  10.         showRoller: true,
  11.         rollPeriod: 1,
  12.       };
  13.  
  14.     .section
  15.       | 体重、筋肉量
  16.       #weights.graph
  17.       javascript:
  18.         gw = new Dygraph(document.getElementById("weights"), "#{@weights}", opts);
  19.  
  20.     .section
  21.       | 体脂肪
  22.       #percents.graph
  23.       javascript:
  24.         gp = new Dygraph(document.getElementById("percents"), "#{@percents}", opts);
  25.  
  26.     .section
  27.       | 基礎代謝
  28.       #calperday.graph
  29.       javascript:
  30.         gp = new Dygraph(document.getElementById("calperday"), "#{@calperday}", opts);