12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- $(document).ready(function () {
- "use strict";
- var $speech = $('div.speech');
- var defaultSize = $speech.css('fontSize');
- $('#switcher button').click(function () {
- var num = parseFloat($speech.css('fontSize'));
- switch (this.id) {
- case 'switcher-large':
- num *= 1.4;
- break;
- case 'switcher-small':
- num /= 1.4;
- break;
- default:
- num = parseFloat(defaultSize);
- }
- $speech.animate({fontSize: num + 'px'}, 'slow');
- });
- var $firstPara = $('p').eq(1);
- $firstPara.hide();
- $('a.more').click(function (event) {
- event.preventDefault();
- $firstPara.animate({
- opacity: 'toggle',
- height: 'toggle'
- }, 'slow');
- var $link = $(this);
- if ($link.text() == 'read more') {
- $link.text('read less');
- } else {
- $link.text('read more');
- }
- });
- $('div.label').click(function () {
- var paraWidth = $('div.speech p').outerWidth();
- var $switcher = $(this).parent();
- var switcherWidth = $switcher.outerWidth();
- $switcher.css({ position: 'relative' })
- .fadeTo('fast', 0.2)
- .animate({left: paraWidth - switcherWidth}, 'slow')
- .fadeTo('slow', 1.0)
- .slideUp('slow')
- .slideDown('slow')
- ;
- });
- });
|