<!-- Start Text re size gadget by http://www.spiceupyourblog.com -->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js' type='text/javascript'/>
<script>
$(document).ready(function(){
//ID, class and tag element that font size is adjustable in this array
//Put in html or body if you want the font of the entire page adjustable
var section = new Array('span','.section2');
section = section.join(',');
// Reset Font Size
var originalFontSize = $(section).css('font-size');
$(".resetFont").click(function(){
$(section).css('font-size', originalFontSize);
});
// Increase Font Size
$(".increaseFont").click(function(){
var currentFontSize = $(section).css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNum*1.2;
$(section).css('font-size', newFontSize);
return false;
});
// Decrease Font Size
$(".decreaseFont").click(function(){
var currentFontSize = $(section).css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNum*0.8;
$(section).css('font-size', newFontSize);
return false;
});
});
</script>
<!-- End Text re size gadget by http://www.spiceupyourblog.com -->
<!-- Start Text re size gadget by http://www.spiceupyourblog.com -->
<b:if cond='data:blog.pageType == "item"'>
<table border='0' style='float:right; margin-left:5px;'><tr><td><img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZupltcsmAsQCH3ob3Y_08Fqgi5H7eVtvbf8SmoLyqFRq9IilorhzNTEhlGhX8ryraD3TchzaebULopXgrDFopG0y2DaVT_JB0AKUKfNtWxbffbD2IZExEtdrLW0oFBRZrchg1VdMTXmI/s1600/font-size-blogger-gadget.png'/> | <a class='increaseFont' style='cursor: pointer; cursor: hand;' title='Larger Text'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhaOgI7eQN6dSM6Q88dSBAEx0ZiFjJeuEw6seTjHfJZXFEBIJwREXrFbODc8JSnPL_ATepY4By1JBjDHOWeP6IwKcvxc2W9b4VY66NEp_jEZ8YYT2oAp7yfPg0NP-zI9FLquo8gtjI4ed8/s1600/bigger-font+-+Copy.png'/></a>
<a class='decreaseFont' style='cursor: pointer; cursor: hand;' title='Smaller Text'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitdiF3v8f5pyGf7pjue0IKq4HD4SH54-xRW2ffFfYZ-huFyUB7uu0OxpKjiGUVjGhQzaekYLdRMUWzG3YgEUA9Nsr4Ox0YP1_4_HdAAReuVSaWo1D788Un8M7ByZmWKTmZoWail91zvWc/s1600/smaller-font.png' style='cursor: hand;'/></a>
<a class='resetFont' style='cursor: pointer; cursor: hand;' title='Reset Text Size'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxQdK2NBhGzK_fie5ylKv3keZRT0NfL0WHn9ja_YWMznFbf9uGiGAl2VCG7E2EMLBSrxJZu-wKsXGzdQasjq4_yW-iWoNqwVUEJdWHQw7Qs8fyAhoBIFWxB-FKBh1-ntbmsOPMutD6bZE/s1600/reset-font.png' style='cursor: hand;'/></a></td></tr></table>
<!-- End Text re size gadget by http://www.spiceupyourblog.com -->
0 Comments:
إرسال تعليق