$(function() {
// 初期実行
responsive();
});
//画面リサイズ時
var timer = false;
$(window).resize(function() {
if (timer !== false) {clearTimeout(timer);}
timer = setTimeout(function() {
responsive();
}, 50);
});
function responsive() {
・・・処理・・・
}



コメント