Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="bg">
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <script>
  7. function myFunction1(){
  8. var el = document.getElementById('text');
  9. var style = window.getComputedStyle(el, null).getPropertyValue('font-size');
  10. var fontSize = parseFloat(style);
  11. if(fontSize<72){
  12. el.style.fontSize = (fontSize + 1) + 'px';
  13. }
  14. }
  15. function myFunction2(){
  16. var el = document.getElementById('text');
  17. var style = window.getComputedStyle(el, null).getPropertyValue('font-size');
  18. var fontSize = parseFloat(style);
  19. if(fontSize>60){
  20. el.style.fontSize = (fontSize - 1) + 'px';
  21. }
  22. }
  23. </script>
  24. </head>
  25. <body>
  26. <p id="text" style="font-size:60px;">текст</p>
  27. <button type="button" onclick="myFunction1()">A+</button>
  28. <button type="button" onclick="myFunction2()">A-</button>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement