9cubed
ブログ | Tailwind | Vite | Python | Node.js | Linux | PowerShell | その他 | 将棋ウォーズ | 歌の練習
< 前の記事

jQuery - focusイベント、focusinイベント、blurイベント、focusoutイベント

次の記事 >

jQuery - scroll イベント

jQuery

jQuery - resize イベント

公開日:2018-12-28
更新日:2019-05-14

1. 概要

ブラウザがリサイズされた時に resize イベントが発生します。

$(window).on("resize", function(e) {
	処理;
});

2. サンプル

ブラウザの幅を変更すると、サイズがログ出力されます。
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>jQuery</title><style>body{color:#fff; background-color:#000;}</style></head>
<body>
  <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>

  <hr />
  <div id="log"></div>
  
  <script>

    $(window).on("resize", function(e) {
      log("width = "  + $(window).width() + 
        ", height = " + $(window).height() );
    });

    //ログ出力
    var no = 1;
    function log(msg) {
      $("#log").append ('<div>' + no++ + ":" + msg + '</div>');
      if ($("#log div").length > 10) $("#log div:first").remove();
    }

  </script>
</body></html>

実行結果は、<iframe> を使用しているため、黒い枠が別ブラウザ扱いとなっているため、
黒い枠のサイズが変更されるまでブラウザの幅を狭くすると、ログ出力されます。
実行結果:画面



< 前の記事

jQuery - focusイベント、focusinイベント、blurイベント、focusoutイベント

次の記事 >

jQuery - scroll イベント

YouTube X

新着一覧

  • SCSS のインストールVite
  • Tailwind CSS のプロジェクトの作成Tailwind
  • TypeScriptのプロジェクトの作成Vite
  • Flask のインストールと動作確認Python
  • 簡易Webサーバーの作成Python
  • pipeline で文章の生成Python
  • pipeline で文章の要約Python
  • 音声から文字起こしPython
  • Node.js のインストールNode.js
  • .ps1(PowerShellスクリプト)を実行可能にするPowerShell

アーカイブ

  • 2025/12
  • 2025/11
  • 2025/10
  • 2025/09
  • 2025/08

以前のカテゴリー一覧

  • CakePHP3
  • CentOS7
  • HTML・CSS・JavaScript
  • Haskell
  • JavaScript
  • Kotlin
  • Laravel5
  • PHP
  • Python
  • Ruby
  • RubyOnRails5
  • TypeScript
  • Vue.js
  • Webサーバ講座
  • Webプログラミング講座
  • jQuery
  • linux
  • パソコン講座
  • ブログ
  • プログラミング講座
  • メモ帳作成講座
  • 数学

Copyright © 9cubed. All Rights Reserved.

プライバシーポリシー 利用規約
▲