Jump to content
php.lv forumi
  • 0

font-size maiņa inline stilime


Question

Posted
/**
  *	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? 

15 answers to this question

Recommended Posts

  • 0
Posted

wtf, nedarbojas edit kā nākas ! :@

 

Vari vēl norādīt specifisku elementu kopu, kuram norādīt font-size. neesmu drošs, ka norādīt html kā parent ir tas izdevīgākais variants.

  • 0
Posted
`font-size` pārtaisi par `fontSize`. Arī, `px` tur **nav** jānorāda.

 

`.css("fontSize", 10)`
  • 0
Posted

Tāpēc, ka tu font size uzstādi html elementam, bet inline stils ir uzlikts konkrētam div. Attiecīgi pa tiešo div elementam uzliktais font size ir svarīgāks par html uzstādīto font size

  • 0
Posted

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? 

  • 0
Posted

Vēl jau ir css3 atribūts zoom:n; vai scale Bet tas jau palielina visu izmēru.

Important jau neder, piem., ar html * { font-size:18px !important; } viss būs vienā izmērā

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...