cancionero-web/res/static/sizes.js
Carlos Galindo 3eaed2eaa8 Add categories and favicon
* Reorganize resource directories (templates, less, static)
* Show categories on index
* Add favicon
2020-12-25 22:07:20 +01:00

12 lines
375 B
JavaScript

SIZE_STEPS = [30, 50, 67, 80, 90, 100, 110, 120, 133, 150, 170, 200, 240, 300];
currSize = SIZE_STEPS.indexOf(100)
/** Changes the size of the lyrics and chords. */
function size(steps) {
if (steps === 0) {
currSize = SIZE_STEPS.indexOf(100);
}
currSize += steps;
document.getElementById('wholeSongDiv').style.fontSize = SIZE_STEPS[currSize] + '%';
}