ブラウザの幅を320pxに変更すると、ブラウザウィンドウのサイズを制限するスクリプトを作成しています。画面は320ピクセル以下に縮小されません。javascript - ブラウザウィンドウを無効にするブラウザウィンドウのサイズを特定の幅に変更したときのサイズ変更
ここは私のコードです!
var waitForFinalEvent = (function() {
var timers = {};
return function(callback, ms, uniqueId) {
if (!uniqueId) {
uniqueId = "Don't call this twice without a uniqueId" ;
}
if (timers[uniqueId]) {
clearTimeout(timers[uniqueId]);
}
timers[uniqueId] = setTimeout(callback, ms);
};
})();
// Usage
$(window).resize(function() {
var output = $('.output');
$(output).text('RESIZING...');
// Wait for it...
waitForFinalEvent(function() {
$(output).text('EVENT FIRED!');
//...
}, 500, "some unique string");
});
これを確認してください.. https://stackoverflow.com/questions/10610899/disable-browser-window-resize –