-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.96 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>3data-sheets</title>
<script src="x3dom/x3dom-181.js"></script>
<link rel="stylesheet" href="x3dom/x3dom.css">
<link rel="shortcut icon" href="assets/fav.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<x3d PrimitiveQuality='Low' disableDoubleClick="true">
<scene>
<pointlight location="5 5 5" intensity="0.4"></pointlight>
<pointlight location="-5 -5 5" intensity="0.4"></pointlight>
<pointlight location="5 -5 -5" intensity="0.4"></pointlight>
<pointlight location="-5 5 -5" intensity="0.4"></pointlight>
<pointlight location="0 0 5" intensity="0.4"></pointlight>
<pointlight location="0 0 -5" intensity="0.4"></pointlight>
<Viewpoint position="0 0 10" orientation="0 0 0 0" centerOfRotation="0 0 0" fieldOfView="0.6"></Viewpoint>
<navigationInfo type='"examin"' headlight='false' speed='1' avatarSize='1'></navigationInfo>
<Transform DEF='WORLD' translation='0 0 0' scale="2 2 2">
<inline id="icInline" />
</Transform>
<Background skyColor='0 0 1' />
<TimeSensor DEF='NORMAL_TIMER' cycleInterval='10' loop='true' />
<OrientationInterpolator DEF='SPIN_ME' key='0.00 0.25 0.50 0.75 1.00'
keyValue='0 1 0 0 0 1 0 1.57079 0 1 0 3.14159 0 1 0 4.7123889 0 1 0 6.2831852' />
<ROUTE fromNode='NORMAL_TIMER' fromField='fraction_changed' toNode='SPIN_ME' toField='set_fraction' />
<ROUTE fromNode='SPIN_ME' fromField='value_changed' toNode='WORLD' toField='rotation' />
</scene>
</x3d>
<div class="contols">
<input list="icList" name="ic" id="searchElemnt" placeholder="what chip ?">
<datalist id="icList"></datalist>
<div id="chipData"></div>
<div id="pinData">
<table>
<tr>
<td class="field" colspan="2" style="text-align: center;">Click on any pin to view its details.</td>
</tr>
</table>
</div>
</div>
<script src="main.js"></script>
</body>
</html>