Jump to content
  • 0

скрипт увеличения шрифта ?


zetaap
 Share

Question

Существует ли какой нибудь способ увеличивать шрифт при нажатии на какуйнить кнопочку, установленную на html страничке. Такое я видел в некоторых шаблонах для Joomla . Помогите реализовать такой способ, плизз... В IE 6 чтоб 100% работал...

P.S Увеличение через настройки браузера не предлагать....

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

можно назначить каждогому объекту свой айди (например каждому

в котором есть текст) с номером и потом по событию циклом обработать все тексты, назначая тот или иной размер шрифта без перезагрузки с помошью:

document.getElementById("elementID").style.fontSize="...";

Link to comment
Share on other sites

  • 0

Долгими поисками по рунету, наш?л способ , выкладываю может кого тоже заинтересует:

var prefsLoaded = false;
var defaultFontSize = 81.3;
var currentFontSize = defaultFontSize;

function revertStyles(){

currentFontSize = defaultFontSize;
changeFontSize(0);

}

function toggleColors(){
if(currentStyle == "White"){
setColor("Black");
}else{
setColor("White");
}
}

function changeFontSize(sizeDifference){
currentFontSize = parseInt(currentFontSize) + parseInt(sizeDifference * 5);

if(currentFontSize > 150){
currentFontSize = 150;
}else if(currentFontSize < 60){
currentFontSize = 60;
}

setFontSize(currentFontSize);
};

function setFontSize(fontSize){
var stObj = (document.getElementById) ? document.getElementById('content_area') : document.all('content_area');
document.body.style.fontSize = fontSize + '%';

//alert (document.body.style.fontSize);
};


function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else expires = "";
document.cookie = name+"="+value+expires+"; path=/";
};

function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
};

window.onload = setUserOptions;

function setUserOptions(){
if(!prefsLoaded){

cookie = readCookie("fontSize");
currentFontSize = cookie ? cookie : defaultFontSize;
setFontSize(currentFontSize);

prefsLoaded = true;
}

}

window.onunload = saveSettings;

function saveSettings()
{
createCookie("fontSize", currentFontSize, 365);
}

В а вот типа вид ссылки:

<a href="#Increase" onclick="changeFontSize(1); return false;">+ Увеличить</a><a href="#Decrease" onclick="changeFontSize(-1); return false;">- Уменьшить</a><a href="#Default" onclick="revertStyles(3); return false;">Обычный шрифт</a>

Link to comment
Share on other sites

  • 0

А не получится ли сделать так: задать все размеры шрифта на странице в относительных единицах, а потом просто через JS менять размер шрифта для body в inline-стиле, например?

P.S: собственно, практически то же самое только что и написали, надо было читать внимательнее -)

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.
Note: Your post will require moderator approval before it will be visible.

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.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy