jquery.cookie.js로 간편하게 문자 크기 전환
$.cookie('保存名', 値)
그냥 유지할 수 있고 $.cookie('保存名')
그냥 얻을 수 있습니다. 음, 너무 편리합니다.이 기사에서는 Rails 프로젝트에서 jquery.cookie.js를 사용하여 문자 크기를 자유롭게 전환하는 방법을 메모로 남깁니다. 하고 싶은 것은 자유롭게 문자의 사이즈를 바꿀 수 있어, 페이지 천이나 리로드시에도 선택중의 문자 사이즈의 설정을 계승하도록 하고 싶다.
jquery-cookie.js 소스를 복제
# Rails.rootで
git clone https://github.com/carhartl/jquery-cookie
cp jquery-cookie/src/jquery.cookie.js vendor/assets/javascripts/
# コピーしたら他は必要ないので消しちゃってOK
rm -rf jquery-cookie
app/assets/javascripts/application.js
//= require jquery.cookie
//= require_tree .
//= require font_change
app/views/layouts/_header.html.slim
.navbar-text
| 文字サイズ
= link_to '小', '#', class: 'btn btn-default font-change', id: 'fontS'
|
= link_to '中', '#', class: 'btn btn-default font-change', id: 'fontM'
|
= link_to '大', '#', class: 'btn btn-default font-change', id: 'fontL'
app/assets/javascripts/font_change.js.coffee
$ ->
# フォントサイズ適用
history = $.cookie('fontSize')
elm_body = $('.wrapper') # bodyタグの上にwrapperクラスを追加しておく
if history
elm_body.addClass(history)
$("##{history}").addClass('active') # bootstrapのactiveクラスを追加
# フォントサイズ変更
$('.font-change').click ->
history = $.cookie('fontSize')
set_font_size = $(this).attr('id')
$("##{history}").removeClass('active')
$(this).addClass('active')
if history
elm_body.removeClass(history).addClass(set_font_size)
else
elm_body.addClass(set_font_size)
$.cookie('fontSize', set_font_size)
app/assets/stylesheets/hoge.css.scss
.fontS {
font-size: 14px !important;
}
.fontM {
font-size: 16px !important;
}
.fontL {
font-size: 18px !important;
}
Reference
이 문제에 관하여(jquery.cookie.js로 간편하게 문자 크기 전환), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/shunichi_com/items/02f80111d2c8da28cf37텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)