🔨 Move ANY element on page
https://codepen.io/piecioshka/full/dXAJdq/
We have for instance that structure in DOM:
<img id="logo" src="..." alt="Logo" />
Create in JavaScript file reference to that element:
var logo = document.querySelector('#logo');
Next, run that one line, to enable logo moving:
const MoveMaster = require('move-master');
MoveMaster({
target: /* HTMLElement */ logo,
options: document.body,
hook: /* HTMLElement */ button
});
To enable moving on selected HTMLElement.
In settings:
target - HTMLElement which will be movedparent - HTMLElement of parent element, which will be calculate position.
document.body.hook - HTMLElement of another element near moved object.
null.The MIT License @ 2026