-
Notifications
You must be signed in to change notification settings - Fork 0
/
spitfire.html
134 lines (92 loc) · 4.34 KB
/
spitfire.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<title>Cndce Experiments - MCB Configurator</title>
<link rel="icon" href="https://kayecandy.github.io/cdn/favicon.ico">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,500,800&display=swap" rel="stylesheet">
<!-- Simplebar -->
<link rel="stylesheet" href="https://unpkg.com/simplebar@latest/dist/simplebar.css" />
<link rel="stylesheet" type="text/css" href="./cndce-configurator.css">
<link rel="stylesheet" type="text/css" href="./assets/models/spitfire/style.css">
</head>
<body>
<div id="cndce-configurator" tabindex="0">
<a id="cndce-screenshot-link" href="" style="display: none;" download>test</a>
<div class="cndce-main-container">
<div class="cndce-configurator-canvas-container">
<div class="cndce-hover">
<h3 class="cndce-hover-title"></h3>
<div class="cndce-hover-description"></div>
</div>
<canvas id="cndce-configurator-canvas"></canvas>
</div>
<div class="cndce-options">
<div class="cndce-option cndce-template">
<div class="cndce-option-choices">
</div>
</div>
</div>
</div>
<div class="cndce-selections-container">
<div class="cndce-selections-header">
<svg id="cndce-selections-toggle" class="cndce-animated-arrow" width="18px" height="17px" viewBox="0 0 18 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="prev" transform="translate(8.500000, 8.500000) scale(-1, 1) translate(-8.500000, -8.500000)">
<polygon class="arrow" points="16.3746667 8.33860465 7.76133333 15.3067621 6.904 14.3175671 14.2906667 8.34246869 6.908 2.42790698 7.76 1.43613596"></polygon>
<polygon class="arrow-fixed" points="16.3746667 8.33860465 7.76133333 15.3067621 6.904 14.3175671 14.2906667 8.34246869 6.908 2.42790698 7.76 1.43613596"></polygon>
<path d="M-1.48029737e-15,0.56157424 L-1.48029737e-15,16.1929159 L9.708,8.33860465 L-2.66453526e-15,0.56157424 L-1.48029737e-15,0.56157424 Z M1.33333333,3.30246869 L7.62533333,8.34246869 L1.33333333,13.4327013 L1.33333333,3.30246869 L1.33333333,3.30246869 Z"></path>
</g>
</svg>
<h4 style="float: right;">Total: <span class="cndce-selections-price">$10,000</span></h4>
</div>
<div class="cndce-selections-categories">
<div class="cndce-selections-category cndce-template">
<img src="">
<span></span>
</div>
</div>
<div class="cndce-selections-content">
<div class="cndce-selections-content-wrapper">
<div class="cndce-selections-category-items cndce-template"></div>
<div class="cndce-selection cndce-template">
<div class="cndce-selection-header">
<span class="cndce-selection-name"></span>
<span class="cndce-selection-price"></span>
</div>
<div class="cndce-selection-choice"></div>
</div>
</div>
</div>
<div class="cndce-selections-footer">
<button>Submit</button>
</div>
</div>
</div>
<!-- ThreeJS -->
<script type="text/javascript" src="./lib/threejs/three.min.js"></script>
<script type="text/javascript" src="./lib/threejs/controls/OrbitControls.js"></script>
<!-- TweenJS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tween.js/16.3.5/Tween.min.js"></script>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!-- Simplebar -->
<script src="https://unpkg.com/simplebar@latest/dist/simplebar.min.js"></script>
<!-- Self -->
<script type="text/javascript" src="./cndce-configurator.js"></script>
<script type="text/javascript" src="./assets/models/spitfire/functions.js"></script>
<script type="text/javascript" src="./assets/models/spitfire/options-categories.js"></script>
<script type="text/javascript" src="./assets/models/spitfire/options.js"></script>
<script type="text/javascript">
$('#cndce-configurator').cndceConfigurator({
// lfsURL: '',
modelURL: './assets/models/spitfire/model.json',
cameraPosition: {x: -21.330114902834737, y: 2.3868773224477295, z: 10.99674926912612},
controlsTarget: {x: 1.2882907169262734, y: 4.841005530414487e-17, z: 2.562857963934551},
ambientLightIntensity: 0,
bgBoxSize: 150,
bgBoxPosition: {x: 0, y: 1.9, z: 0}
});
</script>
</body>
</html>