File "view2.php"
Full path: /www/ansys/ttest/accmes/view2.php
File size: 2.5 KiB (2555 bytes)
MIME-type: text/html
Charset: utf-8
<!DOCTYPE html>
<html>
<head>
<meta chaset="utf-8">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<!-- library -->
<script src="/library/three-59/three.min.js"></script>
<script src="/library/three-59/TrackballControls.js"></script>
<script src="/library/jquery-2.0.3/jquery-2.0.3.min.js"></script>
<!-- main script -->
<script src="./view2.js"></script>
<script src="./org/tdd.js"></script>
<script src="./org/math.js"></script>
<script src="./org/std.js"></script>
<!-- title -->
<title>fbxファイル解析</title>
</head>
<body>
<input type="hidden" name="position" value="<?php print $_POST["position"]; ?>" id="hdPosition">
<table id="maintable" border="0" width="100%" cellspacing="0" cellpadding="0" height="100%">
<tr height="100%">
<td width="30%">
<table class="datatable" border="1" width="100%" cellspacing="0" cellpadding="0" height="100%">
<tr>
<td colspan="15" align="center" width="100%">
<input type="radio" value="0" name="rdiDataView" id="rdiNow" checked>瞬時値
<input type="radio" value="1" name="rdiDataView" id="rdiShort">短期移動平均
<input type="radio" value="2" name="rdiDataView" id="rdiMiddle">中期移動平均
<input type="radio" value="3" name="rdiDataView" id="rdiLong">長期移動平均
</td>
</tr>
<tr width="100%">
<td colspan="15" align="center" width="100%" id="pre_page">上</td>
</tr>
<?php
for($iCount = 0; $iCount < 33; $iCount++)
{
print "<tr id=\"dat\">\n";
print "<td id=\"msec_". ($iCount + 1). "\" colspan=\"3\" align=\"center\" width=\"20%\"> </td>\n";
print "<td id=\"accx_". ($iCount + 1). "\" colspan=\"3\" align=\"center\" width=\"20%\"> </td>\n";
print "<td id=\"accy_". ($iCount + 1). "\" colspan=\"3\" align=\"center\" width=\"20%\"> </td>\n";
print "<td id=\"accz_". ($iCount + 1). "\" colspan=\"3\" align=\"center\" width=\"20%\"> </td>\n";
print "<td id=\"accv_". ($iCount + 1). "\" colspan=\"3\" align=\"center\" width=\"20%\"> </td>\n";
print "</tr>\n";
}
?>
<tr>
<td colspan="15" align="center" width="100%" id="nxt_page">下</td>
</tr>
</table>
</td>
<td width="70%">
<table id="canvastable" border="1" width="100%" cellspacing="0" cellpadding="0" height="100%">
<tr height="100%">
<td width="100%" height="100%">
<div id="view"></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!--
<a href="./index2.html">面を付ける</a>
-->
</body>
</html>