Code Monkey home page Code Monkey logo

dom-resizeable's Introduction

dom-resizeable

Make dom resizeable

Snapshot

snapshot

Usage

yarn add dom-resizeable
npm install dom-resizeable
// use as commonjs
const Resize = require("dom-resizeable");

// use as ES module
import Resize from "dom-resizeable";

// create resize control ui
const resizeControl = new Resize(document.body, {
  width: 100,
  height: 100,
  dragable: true,
});

const div = document.querySelector("#div");

// bind resize control ui to dom element
resizeControl.bindEditTarget(div);

API

const instance = new Resize(container, options);

// parent element for mount resize ui dom
container

// resize ui config
options = {
  width: 0, // ui control default width
  height: 0, // ui control default height
  draggable: false, // ui control can be drag move
  hideCheckIcon: false, // whether hide confirm icon
  handleSize: 8, // ui control handle size(px)

  onConfirm(e) {
    // confirm icon clicked
  },
}

instance.bindEditTarget(domElement, options)
// target dom element to resize
domElement

// element resize config
options = {
  lockAspectRatio: false, // whether lock aspect ratio when resizing
}

Related Projects

dom-resizeable's People

Contributors

wahaha2012 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.