-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsketch.js
92 lines (75 loc) · 2.31 KB
/
sketch.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
let canvas;
let nCurves = 200;
const Y_AXIS = 1;
const X_AXIS = 2;
let b1, b2, c1, c2;
let width = 0;
let height = 0;
// function windowResized() {
// width = window.innerWidth;
// height = windowWidth * 0.5;
// resizeCanvas(width, height);
// }
// windowResized function by GoToLoop
// https://gist.github.com/GoToLoop/54b4c49e9c2541da2d91692bf0c01192
// removes scrollbars by using the computed width?
function windowResized() {
const css = getComputedStyle(document.getElementById('header')),
mw = float(css.marginLeft) + float(css.marginRight),
mh = float(css.marginTop) + float(css.marginBottom),
ww = float(css.width) || windowWidth,
wh = float(css.height) || windowHeight,
w = round(ww - mw), h = round(wh - mh);
resizeCanvas(w, h, true);
}
function setup() {
let header = document.getElementById('header');
width = windowWidth;
height = width * 0.5;
canvas = createCanvas(width, height);
canvas.parent('header');
canvas.style('display', 'block');
canvas.mouseMoved(mouseListener);
canvas.position(0, 0);
windowResized(); // immediately resize to fit
// canvas.style("z-index", "-1");
background(106, 113, 247);
noStroke();
mouseListener();
}
function draw() {
}
function mouseListener() {
let from = color(106, 113, 247);
let to = color(255, 0, 221);
colorMode(RGB);
let c = lerpColor(from, to, map(mouseX, 0, windowWidth, 0, 1));
c.setBlue((map(mouseY, 0, windowHeight, 0, 255)));
// background(c);
let c1 = color(250, 208, 42);
setGradient(0, 0, windowWidth, windowHeight, c, c1, X_AXIS);
}
function mouseMoved() {
}
function setGradient(x, y, w, h, c1, c2, axis) {
noFill();
if (axis === Y_AXIS) {
// Top to bottom gradient
for (let i = y; i <= y + h; i++) {
let inter = map(i, y, y + h, 0, 1);
let c = lerpColor(c1, c2, inter);
stroke(c);
c.setAlpha(10);
line(x, i, x + w, i);
}
} else if (axis === X_AXIS) {
// Left to right gradient
for (let i = x; i <= x + w; i++) {
let inter = map(i, x, x + w, 0, 1);
let c = lerpColor(c1, c2, inter);
stroke(c);
c.setAlpha(10);
line(i, y, i, y + h);
}
}
}