-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstart3d.js
149 lines (115 loc) · 4.43 KB
/
start3d.js
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
/* global THREE:true, $:true */
function makeParticles(scene) {
'use strict';
var particles, pX, pY, pZ, particle, sprite1, sprite2, sprite3, sprite4, sprite5, parameters, theCloud;
var particleCount = 4000;
var materials = [];
scene.fog = new THREE.FogExp2(0x000000, 0.006);
particles = new THREE.Geometry();
for (var p = 0; p < particleCount; p++) {
// create a particle with random
// position values, -250 -> 250
pX = Math.random() * 500 - 250;
pY = Math.random() * 500 - 250;
pZ = Math.random() * 500 - 250;
particle = new THREE.Vector3(pX, pY, pZ);
particles.vertices.push(particle);
}
// snowflakes by http://en.wikipedia.org/wiki/File:Sketch_of_snow_crystal_by_Ren%C3%A9_Descartes.jpg
sprite1 = THREE.ImageUtils.loadTexture("images/snowflake1.png");
sprite2 = THREE.ImageUtils.loadTexture("images/snowflake2.png");
sprite3 = THREE.ImageUtils.loadTexture("images/snowflake3.png");
sprite4 = THREE.ImageUtils.loadTexture("images/snowflake4.png");
sprite5 = THREE.ImageUtils.loadTexture("images/snowflake5.png");
parameters = [
[0x645862, 3, sprite1, 0.2],
[0x998C79, 2, sprite2, 0.4],
[0x4C3C4C, 3, sprite3, 0.3],
[0x83776F, 1, sprite4, 0.5],
[0x4C3C4C, 3, sprite5, 0.6]
];
for (var i = 0; i < parameters.length; i++) {
materials[i] = new THREE.PointsMaterial({
size: Math.random() * 2,
map: parameters[i][2],
blending: THREE.AdditiveBlending,
depthTest: false,
transparent: true,
opacity: Math.random()
});
theCloud = new THREE.Points(particles, materials[i]);
theCloud.rotation.y = Math.random() * 6;
theCloud.rotation.x = Math.random() * 6;
theCloud.rotation.z = Math.random() * 6;
scene.add(theCloud);
}
}
function onStart() {
'use strict';
var onResizeEnd, theGeometry, theMaterial, theLight, theLight2, elem;
var cubes = [];
var theColor = 0xf0634c;
var transition = 0.002;
var body = $('body'), h = body.height(), w = body.width();
var theContainer = $("#animation");
var theRenderer = new THREE.WebGLRenderer({alpha: true});
var theScene = new THREE.Scene();
var theCamera = new THREE.PerspectiveCamera(75, w / h, 0.1, 1000);
theRenderer.setSize(w, h);
theCamera.position.set(0, 0, 10);
theContainer.replaceWith(theRenderer.domElement);
theMaterial = new THREE.MeshLambertMaterial({
color: theColor
});
$(window).resize(function () {
clearTimeout(onResizeEnd);
onResizeEnd = setTimeout(function () {
var h = body.height();
var w = body.width();
theRenderer.setSize(w, h);
theCamera.aspect = w / h;
theCamera.updateProjectionMatrix();
}, 400);
});
function buildScene(cubeNumber, cubeSize) {
cubes = [];
theGeometry = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
for (var i = 0; i < cubeNumber; i += 1) {
for (var k = 0; k < cubeNumber; k += 1) {
elem = new THREE.Mesh(theGeometry, theMaterial);
cubes.push(elem);
elem.position.set(-(cubeNumber * cubeSize / 2) + (cubeSize * k), -(cubeNumber * cubeSize / 2) + (cubeSize * i), 0);
theScene.add(elem);
}
}
}
buildScene(Math.round(w / 16), w / 600);
makeParticles(theScene, theContainer);
theLight = new THREE.DirectionalLight(0xFFFFFF, 1);
theLight.position.set(20, 20, 20);
theScene.add(theLight);
theLight2 = new THREE.DirectionalLight(0x5342E3, 1.2);
theLight2.position.set(-20, -20, 20);
theScene.add(theLight2);
requestAnimationFrame(animate);
setInterval(function () {
transition = -transition;
}, 4000);
function animate() {
var object;
theRenderer.render(theScene, theCamera);
$(cubes).map(function (index, cube) {
cube.rotation.y += 0.004;
cube.rotation.x += 0.004;
cube.position.x += transition;
cube.position.x += transition;
});
for (var i = 0; i < theScene.children.length; i++) {
object = theScene.children[i];
if (object instanceof THREE.Points) {
object.rotation.x += 0.0004;
}
}
requestAnimationFrame(animate);
}
}