/* Load all of the weights of the variable google font by putting .. in between the low and high weight number: */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@100..900&display=swap');
html,
body {
margin: 0;
padding: 0;
background: #10092c;
}
p {
margin-top: 0;
padding: 5px 30px;
/* call the font for the paragraph */
font-family: 'Fraunces', serif;
/* color of the paragraph is below (this one applies a gradient) */
background: linear-gradient(#FF0061, #E1FF00, #00FF9E, #1E00FF);
background-clip: text;
text-fill-color: transparent;
}
// https://fonts.google.com/?vfonly=true
// https://web.dev/variable-fonts/
// https://css-tricks.com/google-fonts-variable-fonts/
var p;
function setup() {
createCanvas(0, 0); //we aren't using the p5.js canvas, we're using js to create and then manipulate HTML and CSS
p = createP('Is this the real life? Is this just fantasy? Caught in a landslide, no escape from reality. Open your eyes, look up to the skies and see.'); // create a <p> element in the HTML DOM that contains the listed text.
}
function draw() {
let w = map(mouseX, 0, windowWidth, 100, 1000); // When the mouseX is 0, the font width is 100. When the mouseX is the windowWidth, the font width is 1000.
let h = windowWidth / 10.5; // makes the text fit container responsively
lineH = 1.25 // controls the line-height (leading) and can be adjusted to make that change based on different parameters
// below, we use js to apply CSS styles. This lets the user interaction update the CSS
p.style('font-weight', w);
p.style('font-size', h + 'px');
p.style('line-height', lineH)
}
This Pen doesn't use any external CSS resources.