-
Notifications
You must be signed in to change notification settings - Fork 3
/
female.html
80 lines (74 loc) · 3.69 KB
/
female.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/sidebar.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/body.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/navbar.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css"
integrity="sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<!-- import json data -->
<script type="text/javascript">
var allBodyPart = null;
var allBodyPart2 = null;
$.ajaxSettings.async = false;
$.getJSON("data/male.json", function (json) {
allBodyPart = json;
console.log(allBodyPart.length);
});
$.getJSON("data/female.json", function (json) {
allBodyPart2 = json;
console.log(allBodyPart2.length);
});
</script>
</head>
<body>
<!-- for pre-loading -->
<div class="se-pre-con"></div>
<!-- main container -->
<main class=".container-fluid">
<div id="contentWrapper2">
<div class="model" id="bodyContainer2">
<div class="body js-body justify-content-center">
<ul class="body-list js-list2"></ul>
<canvas class="body-canvas2 js-canvas" id="mainbody"></canvas>
</div>
</div>
</div>
</main>
<!-- side navigator -->
<div id="mySidenav" class="sidenav" style="visibility: hidden">
<div class="bodypartContainer">
</div>
<div class="bodypartContainer">
<ul class="bodypartList lead"></ul>
</div>
</div>
<!-- message if screen size is too small -->
<!--<div id="screenSizeMessage">-->
<!-- <img src="https://www.lueurexterne.com/templates/yootheme/cache/logo-deleo-8d584c54.png" class="img-fuild"-->
<!-- id="phoneLogo"/>-->
<!-- <h1 id="phoneText" class="lead">For optimal experience, please use a larger device</h1>-->
<!--</div>-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/90/three.js"></script>
<script src="js/orbitcontrols.js"></script>
<script src="js/GLTFLoader.js"></script>
<script src="https://rawgit.com/spite/THREE.MeshLine/master/src/THREE.MeshLine.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.1/dat.gui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.4/TweenMax.min.js"></script>
<script src="js/female.js"></script>
</body>
</html>