Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
           CodeHim.com

Free Web Design Code & Scripts

       
  • Home
  • Code Snippets
    • Accordion
    • Creative
    • Carousel
    • Date & Time
    • Gallery
    • LightBox
    • Menu & Nav
    • Modal
    • Others
    • Portfolio
    • Social Media
    • Text & Input
    • Video Player
    • Zoom
  • HTML & CSS
  • Bootstrap
  • JavaScript
  • Collections
  • About
  • Contact
  • Buy Me a Coffee

Home / Vanilla JavaScript / JavaScript Element Resize Event

JavaScript Element Resize Event

January 22, 2024January 10, 2024 by Asif Mughal
JavaScript Element Resize Event
Share This:
Code Snippet:Fire event after window resize is complete Vanilla JS
Author: Revolution Graphics
Published: January 10, 2024
Last Updated: January 22, 2024
Downloads: 910
License: MIT
Edit Code online: View on CodePen
Read More
 Demo
Download (File path is not allowed!)

This JavaScript code detects browser window resize using an ‘optimizedResize’ event. It updates a status message. The code improves performance by preventing rapid event firing. It’s helpful for managing resize-triggered actions.

You can use this code in web development projects requiring responsive design elements. It helps manage and trigger actions during window resize events efficiently.

How to Detect Element Resize Event in JavaScript

1. First of all, load the Normalize CSS by adding the following CDN link into the head tag of your HTML document. (Optional)

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">

2. In your HTML file, create a container element with a class, such as ‘box,’ that you want to monitor for resize events. Here’s an example:

<div class="box"><b>Resize ME</b><span class="status">Waiting</span></div>

3. Now, style your container element as needed using CSS. The following code includes some basic styling. Feel free to customize it to match your project’s design.

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  display: flex;
}

body {
  margin: auto;
}

html {
  background: grey;
}

.box {
  width: 3em;
  height: 3em;
  border: solid 10px gold;
  border-width: 4vmin;
  font-size: 40px;
  font-size: 13vmin;
  line-height: 0.8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.box span {
  font-size: 6vmin;
  color: gold;
}

4. Finally, add the following JavaScript code to your project. This code sets up an ‘optimizedResize’ event listener to detect window resizes efficiently. It updates the status message within your container.

var body = document.querySelector("body"),
    statusReport = document.querySelector(".status");

(function() {
  var throttle = function(type, name, obj) {
    obj = obj || window;
    var running = false;
    var func = function() {
      if (running) {
        return;
      }
      running = true;
      requestAnimationFrame(function() {
        obj.dispatchEvent(new CustomEvent(name));
        running = false;
      });
    };
    obj.addEventListener(type, func);
  };

  /* init - you can init any event */
  throttle("resize", "optimizedResize");
})();

var resizeTimer;
// handle event
window.addEventListener("optimizedResize", function() {
  console.log("firing");
  statusReport.innerHTML = "firing";
  clearTimeout(resizeTimer);
  resizeTimer = setTimeout(function() {
    statusReport.innerHTML = "fired";
    console.log("fired");
  }, 250);
});

You can customize the code to perform specific actions when a resize event is detected. For instance, you can update the layout or perform other dynamic adjustments. Modify the following part of the code to suit your needs:

window.addEventListener("optimizedResize", function() {
  // Add your code here to handle the resize event
  // For example, you can update the layout, animations, or any other actions.
});

That’s all! hopefully, you have successfully created Javascript Element Resize Event. If you have any questions or suggestions, feel free to comment below.

Similar Code Snippets:

  • JavaScript Avatar Generator

    JavaScript Avatar Generator

  • JavaScript Image Editor Add Text

    JavaScript Image Editor Add Text

  • Water Intake Calculator in JavaScript

    Water Intake Calculator in JavaScript

  • Generate Avatars with Initials From Name in JavaScript

    Generate Avatars with Initials From Name in JavaScript

  • JavaScript Calculate Age in Years, Months Days

    JavaScript Calculate Age in Years, Months Days

  • Simple Table Pagination JavaScript

    49+ Simple Table Pagination JavaScript Demo Download Tutorial

  • JavaScript Compress Image Before Upload

    JavaScript Compress Image Before Upload

  • Collapsible Timeline Using CSS3 and Vanilla JS

    Collapsible Timeline Using CSS3 and Vanilla JS

  • Next and Previous Buttons in JavaScript with Demo

    Next and Previous Buttons in JavaScript with Demo

Asif Mughal

I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences.
I truly enjoy what I’m doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.

Categories Vanilla JavaScript
Change Navbar Color on Scroll JavaScript
JavaScript Random Number Generator Between Range

Leave a Comment Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

  • Categories

    • Accordion 22
    • Bootstrap 81
      • Bootstrap Accordion 1
      • Bootstrap Buttons 4
      • Bootstrap Cards 2
      • Bootstrap Carousel 2
      • Bootstrap Dropdowns 2
      • Bootstrap Forms 6
      • Bootstrap Jumbotron 1
      • Bootstrap Modals 2
      • Bootstrap Navbars 6
      • Bootstrap Panels 1
      • Bootstrap Progress Bars 1
      • Bootstrap Text & Input 3
    • Carousel 58
    • Chart & Graph 15
    • Date & Time 49
    • Gallery 39
    • HTML5 & CSS3 201
    • Layout 17
    • LightBox 19
    • Menu & Nav 95
    • Modal 18
    • Others 58
    • Portfolio 8
    • Social Media 10
    • Text & Input 120
    • Vanilla JavaScript 163
    • Zoom 12

You May Like

Alert (7) Analog Clock (4) Analog Clocks (5) Back to Top (4) Calculator (16) Calendar (5) Chart (3) Color Picker (4) Contact Us Forms (5) Countdown Timer (6) Datepicker (9) Digital Clocks (10) Drag and Drop (4) Dropdown Menu (23) File Uploader (4) Hamburger Menu (9) Horizontal Menu (24) Hover Effects (5) HTML5 Canvas (8) Image Sliders (40) Mega Menu (11) Modal (5) Multi-Level Menu (9) News Ticker (4) Notification (9) Off-Canvas Menu (10) Pagination (5) Parallax (8) Popup Lightbox (20) Progress Bar (5) Range Sliders (4) Scrolling Effects (28) Search Box (4) Select Dropdown (4) Shopping Cart (3) Side Menu (16) Slideshow (19) Social Share Buttons (3) Tabs (9) Text (11) Timeline (5) Timer (4) Tooltip (4) Typing Effect (6) Vertical Menu (14)

Latest Code Snippets

  • Common Open Source Security Vulnerabilities and How to Mitigate ThemCommon Open Source Security Vulnerabilities and How to Mitigate Them
    October 12, 2024
  • Animating Grid-column on Hover Using CSSAnimating Grid-column on Hover Using CSS
    April 1, 2024
  • Star Trails Animation On Mousemove in JavaScriptStar Trails Animation On Mousemove in JavaScript
    March 31, 2024
  • Gravity Button Using Pure CSSGravity Button Using Pure CSS
    March 31, 2024
  • Padlock Toggle Switch in CSSPadlock Toggle Switch in CSS
    March 31, 2024
  • Scroll-driven Animations in Pure CSSScroll-driven Animations in Pure CSS
    March 31, 2024
  • Interactive Notification Center UI in Vanilla JSInteractive Notification Center UI in Vanilla JS
    March 31, 2024
  • Emoji Spinner in Vanilla JavaScriptEmoji Spinner in Vanilla JavaScript
    March 31, 2024
  • Reveal Secret Code Using CSSReveal Secret Code Using CSS
    March 31, 2024
  • Toggle Button in CSS With Stretchable Elastic EffectToggle Button in CSS With Stretchable Elastic Effect
    March 31, 2024

Popular

  • 65+ Login Page in HTML with CSS Code Sample Simple to Difficult - 947,410 views
  • 25+ Best JavaScript Shopping Cart Examples with Demo - 211,942 views
  • Bootstrap Multiselect Dropdown with Checkboxes - 150,950 views
  • Bootstrap 5 Buttons with Icon and Text Tutorial & Demo - 112,360 views
  • 19+ Bootstrap Select Dropdown with Search Box Tutorial & Examples - 101,041 views
  • Bootstrap 5 Sidebar Menu with Submenu Collapse/Hover Tutorial Demo - 88,106 views
  • 99+ Social Media Buttons HTML Code Sample & Tutorial - 86,393 views
  • 19+ Bootstrap 5 Mega Menu Responsive/Drop Down Examples - 86,390 views
  • Bootstrap 4 Modal Popup Login Form Tutorial & Demo - 82,150 views
  • Bootstrap Vertical Menu with Submenu on Click - 80,202 views

Advertisement

About CodeHim

Free Web Design Code & Scripts - CodeHim is one of the BEST developer websites that provide web designers and developers with a simple way to preview and download a variety of free code & scripts. All codes published on CodeHim are open source, distributed under OSD-compliant license which grants all the rights to use, study, change and share the software in modified and unmodified form. Before publishing, we test and review each code snippet to avoid errors, but we cannot warrant the full correctness of all content. All trademarks, trade names, logos, and icons are the property of their respective owners... find out more...

CodeHim
  • About
  • Contact Us
  • Terms and Conditions
  • Privacy Policy
Top Categories
  • Bootstrap Snippets
  • JavaScript Snippets
  • HTML CSS Snippets
  • Menu & Nav Snippets
Get in Touch

Follow us on social media to be updated with latest web design code & scripts...

All Rights Reserved © 2026 - CodeHim Inc

Please Rel0ad/PressF5 this page if you can't click the download/preview link

F5
X