04.js 355 B

1234567891011121314
  1. $(document).ready(function () {
  2. "use strict";
  3. var $speech = $('div.speech');
  4. $('#switcher button').click(function () {
  5. var num = parseFloat($speech.css('fontSize'));
  6. if (this.id == 'switcher-large') {
  7. num *= 1.4;
  8. } else if (this.id == 'switcher-small') {
  9. num /= 1.4;
  10. }
  11. $speech.css('fontSize', num + 'px');
  12. });
  13. });