Home > Web Front-end > CSS Tutorial > How Can I Make HTML Elements Resizable Using Only JavaScript?

How Can I Make HTML Elements Resizable Using Only JavaScript?

Patricia Arquette
Release: 2024-12-07 15:30:15
Original
421 people have browsed it

How Can I Make HTML Elements Resizable Using Only JavaScript?

Customizable HTML Element Resizing Using Pure JavaScript

Often, web developers need to provide a resizable interface for HTML elements without relying on third-party libraries. This article explores how to achieve this functionality using pure JavaScript.

To make an HTML element resizable, we can attach event listeners to monitor mouse input and adjust the element's size accordingly. Here's the code that accomplishes this:

var p = document.querySelector('p'); // Element to make resizable

p.addEventListener('click', function init() {
  p.removeEventListener('click', init, false);
  p.className = p.className + ' resizable';
  var resizer = document.createElement('div');
  resizer.className = 'resizer';
  p.appendChild(resizer);
  resizer.addEventListener('mousedown', initDrag, false);
}, false);

var startX, startY, startWidth, startHeight;

function initDrag(e) {
  startX = e.clientX;
  startY = e.clientY;
  startWidth = parseInt(window.getComputedStyle(p).width);
  startHeight = parseInt(window.getComputedStyle(p).height);
  document.addEventListener('mousemove', doDrag, false);
  document.addEventListener('mouseup', stopDrag, false);
}

function doDrag(e) {
  p.style.width = startWidth + e.clientX - startX + 'px';
  p.style.height = startHeight + e.clientY - startY + 'px';
}

function stopDrag(e) {
  document.removeEventListener('mousemove', doDrag, false);
  document.removeEventListener('mouseup', stopDrag, false);
}
Copy after login

Usage:

Simply apply this code to the desired HTML element, such as a paragraph (

):

<p>Resizable Text</p>
Copy after login

Demo:

[Demo Link]

Note:

Keep in mind that this solution may have compatibility issues across browsers; it has been tested and works in Firefox but not IE below version 9.

The above is the detailed content of How Can I Make HTML Elements Resizable Using Only JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template