【Labs】テキストサイズ変更ボタン - web design lab
にほんブログ村 デザインブログ Webデザインへ PVアクセスランキング にほんブログ村

【Labs】テキストサイズ変更ボタン


【Labs】テキストサイズ変更ボタン

こんにちは(・∀・)

JavaScriptを使用したサンプルをご紹介します。今回はテキストサイズを変更するボタンです。

テキストサイズ変更ボタン

HTML

<div class="textsize">
<script src="textsize.js"></script>
<!--textsize--></div>
JavaScript

/*クッキー*/
ts_name = "textsize";
function  changetextsize(obj){
document.cookie = ts_name+"="+obj+"; expires=Fri, 31-Dec-2030 23:59:59 GMT; path=/;";
window.location.reload(true);
}
Cookie = document.cookie+";";
ts_set1 = Cookie.indexOf(ts_name);
if(ts_set1 != -1){
ts_set2 = Cookie.indexOf("=",ts_set1);
ts_set3 = Cookie.indexOf(";",ts_set2);
ts_value = Cookie.substring(ts_set2+1, ts_set3);
}else{
ts_value = 0;
}
/*CSS*/
document.write('<style>');
if(ts_value == 0) {
document.write('body {font-size: 85%;line-height: 1.5;}');
} else if(ts_value == 1) {
document.write('body {font-size: 100%;line-height: 1.5;}');
} else {
document.write('body {font-size: 85%;line-height: 1.5;}');
}
document.write('</style>');
/*ボタン*/
document.write('<style>');
document.write('#textsize {overflow: hidden;}');
document.write('#textsize p {float: left;color: #fff;background: #999;width: 20px;height: 20px; margin: 5px 2px; text-align: center; font-size: 14px;}');
document.write('#textsize p a {display: block;}');
document.write('</style>');
document.write('<div id="textsize">');
if(ts_value == 0) {
document.write('<p>M</p>');
} else {
document.write('<p><a href="javascript:void(0)" onclick="changetextsize(0); return false;">M</a></p>');
}
if(ts_value == 1) {
document.write('<p>L</p>');
} else {
document.write('<p><a href="javascript:void(0)" onclick="changetextsize(1); return false;">L</a></p>');
}
document.write('</div>');
Result

サンプルデモ

関連リンク

【Labs】jquery.cookie.jsでテキストサイズ変更ボタン


にほんブログ村 デザインブログ Webデザインへ PVアクセスランキング にほんブログ村