-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
173 lines (133 loc) · 4.41 KB
/
main.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
import * as THREE from 'three'
import gsap from 'gsap'
import * as dat from 'dat.gui'
import Stats from 'stats-js'
import frag from './shaders/frag.glsl'
import vert from './shaders/vert.glsl'
import oc from 'three-orbit-controls'
const store = {
dom: {
webgl: document.querySelector('.webgl')
},
bounds: {
ww: window.innerWidth,
wh: window.innerHeight
}
}
// const OrbitControls = oc(THREE)
class MovingLights {
constructor() {
this.scene
this.camera
this.renderer
this.composer
this.geometry
this.mesh
this.material
this.glitch
this.stats
this.gui
this.uniforms
this.velocity = 0.02
this.intensity = 0.55
this.mousePosition = true
this.wildGlitch = false
this.color = [0, 91, 184]
this.offset = { x: 3, y: 3 }
this.mouse = { x: 0, y: 0 }
this.container = store.dom.webgl
this.controls
this.init()
}
init() {
this.createScene()
}
createScene() {
this.scene = new THREE.Scene()
this.camera = new THREE.PerspectiveCamera(50, store.bounds.ww / store.bounds.wh, 0.5, 1000)
this.camera.position.set(0, 0, 1)
this.scene.add(this.camera)
this.renderer = new THREE.WebGLRenderer({
antialias: true,
preserveDrawingBuffer: true
})
this.renderer.setSize(store.bounds.ww, store.bounds.wh)
this.renderer.setPixelRatio(gsap.utils.clamp(1, 1.5, window.devicePixelRatio))
this.renderer.setClearColor(0x000000)
this.renderer.clear()
this.container.appendChild(this.renderer.domElement)
window.addEventListener('resize', this.resize, false)
// this.controls = new OrbitControls(this.camera, this.renderer.domElement)
this.stats = new Stats()
this.stats.domElement.style.position = 'absolute'
this.stats.domElement.style.left = '300px'
this.stats.domElement.style.top = '0px'
document.body.appendChild(this.stats.domElement)
this.gui = new dat.GUI({ autoPlace: false })
document.querySelector('.gui-wrap').appendChild(this.gui.domElement)
this.gui.domElement.id = 'gui';
this.gui.close()
const general = this.gui.addFolder('picker')
general.open()
general
.add(this, 'velocity')
.min(0.01).max(0.2).step(0.01)
.name('velocity')
general
.add(this, 'intensity')
.min(0.1).max(1.5).step(0.01)
.name( 'Intensity' )
.onChange((value) => this.uniforms.intensity.value = value)
general
.addColor(this, 'color')
.name('Color')
.onChange((value) => this.uniforms.color.value = new THREE.Vector3(...this.rgb(value)))
this.createMesh()
this.run()
}
createMesh() {
this.uniforms = {
time: { value: 0 },
resolution: { value: new THREE.Vector2(store.bounds.ww, store.bounds.wh) },
intensity: { value: this.intensity },
color: { value: new THREE.Vector3(...this.rgb(this.color)) },
}
this.material = new THREE.ShaderMaterial({
uniforms: this.uniforms,
fragmentShader: frag,
vertexShader: vert,
})
this.geometry = new THREE.PlaneGeometry(store.bounds.ww, store.bounds.wh, 1)
this.mesh = new THREE.Mesh(this.geometry, this.material)
this.scene.add(this.mesh)
}
run = () => {
this.uniforms.time.value += this.velocity
//this.stats.update()
this.render()
}
render() {
gsap.ticker.add(this.run)
this.renderer.render(this.scene, this.camera)
}
resize() {
const width = store.bounds.ww
const height = store.bounds.wh
this.camera.aspect = width / height
this.camera.updateProjectionMatrix()
this.uniforms.resolution.value.x = width
this.uniforms.resolution.value.y = height
this.composer.setSize(width, height)
this.renderer.setSize(width, height)
}
rgb(arr) {
return arr.map((value) => value / 255)
}
random(min, max) {
return (Math.random() * (max - min + 1) ) << 0
}
easeOutQuad(t) {
return t * (2 -t)
}
}
let lights = new MovingLights()