Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="PL">
  3. <head>
  4. <meta charset="UTF-8">
  5. <style>
  6. </style>
  7. <body bgColor="#fff">
  8. <form name="Dane">
  9. <legend>Wpisz tekst:</legend>
  10. <input type="text" name="tekst"/>
  11. <legend>Podaj wielkość czcionki:</legend>
  12. <input type="range" name="rozmiar" min="5" max="15" step="1" />
  13. <select name="typ">
  14. <legend>Wybierz czcionkę</legend>
  15. <option value="Calibri">Zwykły</option>
  16. <option value="Times New Roman">Gabriola</option>
  17. <option value="Arial">Freestyle Script</option>
  18. <option value="Segoe Print">Monotype Corsiva</option>
  19. </select>
  20. <legend>Podaj kolor czcionki:</legend>
  21. <input type="color" id="kolor">
  22. <legend>Podaj kolor tła:</legend>
  23. <input type="color" id="tlo">
  24. <input type="button" value="Ok" onClick="Dziala()"/>
  25. </form>
  26. <div id="wynik"></div>
  27. <script>
  28. function Dziala()
  29. {
  30. var tekst = document.Dane.tekst.value;
  31. var wielkosc = parseInt(document.Dane.rozmiar.value);
  32. var czcionka = document.Dane.typ.value;
  33. var kolorc = document.Dane.kolor.value;
  34. var kolort = document.Dane.tlo.value;
  35. var zmiana = new zamiana(tekst,wielkosc,czcionka,kolorc,kolort);
  36.  
  37. zmiana.pokaz();
  38. }
  39.  
  40. function zamiana(tekst1,wielkosc1,czcionka1,kolorc1,kolort1) {
  41. this.tekst1=tekst1;
  42. this.wielkosc1=wielkosc1;
  43. this.czcionka1=czcionka1;
  44. this.kolorc1=kolorc1;
  45. this.kolort1=kolort1;
  46. this.pokaz=function()
  47. {
  48. document.getElementById("wynik").innerHTML="<span style='font-family:"+czcionka1+";font-size:"+wielkosc1+"px"+";color:"+kolorc1+";background-color: "+kolort1+"'>"+tekst1+"</span>";
  49. }
  50. }
  51.  
  52. </script>
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement