asimryu

font size chage

Jan 12th, 2017
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>글자크기</title>
  6. <style>
  7. p {
  8. font-size: 1.0em;
  9. }
  10. strong {
  11. font-size: 1.5em;
  12. }
  13. </style>
  14. <script>
  15. var dfs = 1.0;
  16. function changeSize(s) {
  17. var obj = document.getElementById("mytext");
  18. dfs += s;
  19. obj.style.fontSize = dfs + "em";
  20. }
  21. </script>
  22. <link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/start/jquery-ui.css">
  23. <script src="http://code.jquery.com/jquery-1.12.4.min.js"></script>
  24. <script src="http://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
  25. </head>
  26. <body>
  27. <button onclick="changeSize(0.1)">+</button>
  28. <button onclick="changeSize(-0.1)">-</button>
  29. <form>
  30. <input type="text" id="date" name="date">
  31. </form>
  32. <p id="mytext"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipisicing elit. Officiis, aperiam, veritatis! Officiis harum id ratione aperiam veritatis quam, et necessitatibus consequuntur enim eum repellat, minus dolore, corrupti, omnis doloremque consequatur.</p>
  33. <script>
  34. $("#date").datepicker({
  35. dateFormat: "yy-mm-dd",
  36. minDate:-3,
  37. maxDate:3
  38. });
  39. </script>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment