フォントサイズ変更&クッキーの設定(jQuery):トップページ

jQuery(JS)を使ってフォントサイズを変更するサンプル


トップ

フォントサイズ変更&クッキー

トップページの文章がpタグで入っています。フォントサイズは%にて指定。S・M・LそれぞれCSSを用意し、それを切り替えてフォントサイズを変更している。その情報をcookieに記録しておいて、jQueryとjquery.cookie.jsにて制御。


フォントサイズ変更

jQueryを使ったサイズ変更(カスタム)



現在のフォントサイズCSS:


クッキーの制御方法

http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/

$.cookie('the_cookie'); // get cookie
$.cookie('the_cookie', 'the_value'); // set cookie
$.cookie('the_cookie', 'the_value', { expires: 7 }); // set cookie with an expiration date seven days in the future
$.cookie('the_cookie', '', { expires: -1 }); // delete cookie
$.cookie('the_cookie', null); // delete cookie(こっちのほうがスマート?)