
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
movable-resizable-js
Advanced tools
This project is a javascript library to facilitate movable and resizable interaction on web page. The library is provided by Tencent Real-timing Communication(TRTC) team.
This project is a javascript library to facilitate movable and resizable interaction on web page. The library is provided by Tencent Real-timing Communication(TRTC) team.
#npm
npm install movable-resizable-js
#yarn
yarn add movable-resizable-js
import { Movable, Resizable } from 'movable-resizable-js';
const targetElement = document.getElementById('movable-and-resiable');
const targetContainer = document.body;
// Enable moving
const movableController = new Movable(
targetElement,
targetContainer,
{
canExceedContainer: true, // default `false`
}
);
movableController.on('move', (left, top) => {
console.log('element moved to:', left, top);
});
// Enable Resizing
const resizableController = new Resizable(
targetElement,
targetContainer,
{
canExceedContainer: true, // default `false`
keepRatio: true, // default `false`
stopPropagation: true // default `false`. To use with `Movable` together, this option must be `true`, or else will trigger moving action too.
}
);
resizableController.on('resize', (left, top, width, height) => {
console.log('element resized to:', left, top, width, height);
});
@import "movable-resizable-js/resizable.css";
// You can override default resizeble style here
FAQs
This project is a javascript library to facilitate movable and resizable interaction on web page. The library is provided by Tencent Real-timing Communication(TRTC) team.
The npm package movable-resizable-js receives a total of 3 weekly downloads. As such, movable-resizable-js popularity was classified as not popular.
We found that movable-resizable-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.