You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
528 B
10 lines
528 B
//parametr s "výchozí hodnotou" nám dovoluje "dobrovolně" napsat jinou hodnotu než je výchozí
|
|
//např. tato funkce mění font dle seznamu a vstup je ID seznamu z kterého bere vybranou položku ze seznamu
|
|
function changeFont(htmllist ="sfont") {
|
|
console.warn(htmllist);
|
|
let fontList = document.getElementById(htmllist)
|
|
let selectFont = fontList.selectedIndex;
|
|
let nextFont = fontList.options[selectFont].value
|
|
console.warn(nextFont)
|
|
document.getElementById("ltext").style.fontFamily = nextFont
|
|
}
|