-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
210 lines (176 loc) · 8.17 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Three.js with Mouse and Gyroscope Interaction and Animated Fox</title>
<style>
body { margin: 0; overflow: hidden; background:pink; }
canvas { display: block; }
#info {
position: absolute;
top: 10px;
left: 10px;
color: white;
background: rgba(0, 0, 0, 0.5);
padding: 10px;
font-family: sans-serif;
}
#permissionButton {
padding: 10px;
background-color: pink;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="info">
<button id="permissionButton" style="display:none;">Enable Gyroscope</button>
<p id="status">Waiting for interaction...</p>
</div>
<script type="module">
import * as THREE from 'https://unpkg.com/[email protected]/build/three.module.js';
import { GLTFLoader } from 'https://unpkg.com/[email protected]/examples/jsm/loaders/GLTFLoader.js';
// Basic Three.js scene setup
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer({ antialias: true });
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
// Add Basic Scene settings
scene.background = new THREE.Color(0xffd1dc);
// Add ambient lighting (soft, all-around light)
const ambientLight = new THREE.AmbientLight(0x404040); // Soft white light
scene.add(ambientLight);
// Add a directional light (like sunlight)
const directionalLight = new THREE.DirectionalLight(0xffffff, 1);
directionalLight.position.set(5, 10, 5); // Adjust the position of the light
directionalLight.castShadow = true; // Enable shadow casting
scene.add(directionalLight);
// Add a spotlight for dramatic effect
const spotlight = new THREE.SpotLight(0xffffff, 2);
spotlight.position.set(-10, 10, 10);
spotlight.castShadow = true;
spotlight.angle = Math.PI / 6; // Control the spotlight cone angle
scene.add(spotlight);
let targetRotationX = 0, targetRotationY = 0;
let targetPositionX = 0, targetPositionY = 0;
let mixer; // To handle the model animation
let model;
let initialBeta = 0, initialGamma = 0;
let initialSet = false;
const sensitivity = 0.03;
let windowHalfX = window.innerWidth / 2;
let windowHalfY = window.innerHeight / 2;
// Load the Fox GLTF model from URL
const loader = new GLTFLoader();
loader.load(
'https://14542817.fs1.hubspotusercontent-na1.net/hubfs/14542817/3d%20model%20files/fox_test/Fox.gltf', // Online GLTF file
function (gltf) {
model = gltf.scene;
scene.add(model);
// Initialize the animation mixer for the model
mixer = new THREE.AnimationMixer(model);
gltf.animations.forEach((clip) => {
mixer.clipAction(clip).play(); // Play all available animations
});
// Enable shadow casting for all model parts
model.traverse(function (node) {
if (node.isMesh) {
node.castShadow = true; // Allow the model to cast shadows
node.receiveShadow = true; // Allow the model to receive shadows
}
});
// Position and scale the model in the scene
model.position.set(0, 0, 0);
model.scale.set(0.025, 0.025, 0.025); // Adjust scale for the Fox model
console.log('Fox model and animations loaded successfully:', model);
},
function (xhr) {
console.log((xhr.loaded / xhr.total * 100) + '% loaded');
},
function (error) {
console.error('An error occurred while loading the Fox model:', error);
}
);
camera.position.z = 5;
const clock = new THREE.Clock();
function animate() {
requestAnimationFrame(animate);
const delta = clock.getDelta();
// Update the animation mixer
if (mixer) mixer.update(delta);
if (model) {
model.rotation.x += (targetRotationX - model.rotation.x) * 0.1; // Smooth rotation on X axis
model.rotation.y += (targetRotationY - model.rotation.y) * 0.1; // Smooth rotation on Y axis
model.position.x += (targetPositionX - model.position.x) * 0.1; // Smooth position on X axis
model.position.y += (targetPositionY - model.position.y) * 0.1; // Smooth position on Y axis
}
renderer.render(scene, camera);
}
animate();
// Mouse interaction for desktop
function onDocumentMouseMove(event) {
targetRotationY = (event.clientX - windowHalfX) / windowHalfX * 0.5;
targetRotationX = (event.clientY - windowHalfY) / windowHalfY * 0.5;
targetPositionX = (event.clientX - windowHalfX) / windowHalfX * 0.5;
targetPositionY = -(event.clientY - windowHalfY) / windowHalfY * 0.5;
}
// Gyroscope interaction for mobile
function handleDeviceOrientation(event) {
const { beta, gamma } = event;
if (!initialSet) {
initialBeta = beta;
initialGamma = gamma;
initialSet = true;
}
targetRotationX = (beta - initialBeta) * sensitivity;
targetRotationY = (gamma - initialGamma) * sensitivity;
targetPositionX = (gamma - initialGamma) * sensitivity;
targetPositionY = (beta - initialBeta) * sensitivity;
document.getElementById('status').innerText = `Gyroscope data: beta=${beta.toFixed(2)}, gamma=${gamma.toFixed(2)}`;
}
// Request device orientation permission for iOS 13+ devices
function requestPermission() {
if (typeof DeviceMotionEvent.requestPermission === 'function') {
const button = document.getElementById('permissionButton');
button.style.display = 'block';
button.addEventListener('click', function () {
DeviceMotionEvent.requestPermission()
.then((response) => {
if (response === 'granted') {
window.addEventListener('deviceorientation', handleDeviceOrientation, true);
button.style.display = 'none'; // Hide button after permission is granted
}
})
.catch(console.error);
});
} else {
// Non-iOS devices or older versions that don't need permission
window.addEventListener('deviceorientation', handleDeviceOrientation, true);
}
}
// Detect whether to use mouse or gyroscope based on device type
function isMobile() {
return /Android|iPhone|iPad|iPod|Opera Mini|IEMobile|WPDesktop/i.test(navigator.userAgent);
}
if (isMobile()) {
requestPermission(); // Use gyroscope for mobile devices
} else {
document.addEventListener('mousemove', onDocumentMouseMove, false); // Use mouse interaction for desktop
}
// Handle window resize
window.addEventListener('resize', () => {
windowHalfX = window.innerWidth / 2;
windowHalfY = window.innerHeight / 2;
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
</script>
</body>
</html>