Jump to content
php.lv forumi
  • 0

font-size maiņa inline stilime


anonīms

Question

/**
  *	Font-size
 */
jQuery(function() {
	var data = {};
	var currentFontSize = parseFloat(jQuery('html').css('font-size'));
	if(fontsize > 1) {
		fontsize = parseFloat(fontsize);
		fontsizeNew = Math.round(currentFontSize+fontsize*2);
		jQuery('html').css('font-size',fontsizeNew+'px');
	}
	jQuery('.custom-fontsize').click(function() {
		var data = {};
		fontsize = parseFloat(fontsize);
		fontsize = fontsize+1;
		if(fontsize > 3) {
			fontsize = 1;
		}

		fontsizeNew = Math.round(currentFontSize+fontsize*2);
		jQuery('html').css('font-size',fontsizeNew+'px');

		data['fontsize'] = fontsize;
		jQuery.ajax({
			type: 'POST',
			url: '/fontsize_change/',
			data: data,
			success: function(data, textStatus, jqXHR) {
				// ok
			},
			error: function(jqXHR, textStatus, errorThrown) {
				//console.log('error');
			}
		});
	});
	return false;
});

 

 

problēma ir tur, ka, ja elements ir ar inline css'u, tad nemainās fonta izmērs. Kā varētu šo atrisināt? 

Link to comment
Share on other sites

15 answers to this question

Recommended Posts

  • 0

Da nevar būt! Tieši tādēļ varbūt arī ir šis temats vispār izveidots?

inline css es nevaru aizvākt, jo klientam ir nepieciešams html.

Font-size kā tādu lapā nevaru ņemt nost, tādēļ arī jautājums vai ir kaut kādā veidā iespējams ar jquery mainīt fontu ignorējot to fontu, kas ir inline? 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...