2.0.15 • Published 5 months ago

@gausszhou/vue-drag-resize-rotate v2.0.15

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

vue-drag-resize-rotate

Software License Npm Package

Tips

Please detour if the elements dragged at the same time reach more than 50+ businesses

Online demo

Chinese online demo address

Getting started

npm install  @gausszhou/vue-drag-resize-rotate
<template>
  <div class="container">
    <vue-drag-resize-rotate
      :w="100"
      :h="100"
      :x="0"
      :y="0"
      :parent="true"
      :draggable="true"
      :resizable="true"
      :rotatable="true"
      @resizing="resizing"
      @rotating="rotating"
      :r="0"
    >
    {{ angle }}
    </vue-drag-resize-rotate>
  </div>
</template>

<script>
import VueDragResizeRotate from "@gausszhou/vue-drag-resize-rotate";

export default {
  components: {
    VueDragResizeRotate,
  },
  data() {
    return {
      angle: 0,
    };
  },
  methods: {
    resizing(x, y, w, h) {
      console.log(x, y, w, h);
    },
    rotating(angle) {
      console.log(angle)
    },
  },
};
</script>

Todo list

  • Fixed some regular judgment problems and 1px error of container size
  • Integrate auto-align function
  • Integrate and refactor rotation function
    • realizes rotation, can stretch the size when rotating, and does not move to the vertex
    • Rotary handle style follows angle changes
  • fix aspect ratio
    • allow external incoming aspect ratio
  • fix zoom
  • rebuild code
    • Extract logic
    • Optimized performance

Tip: After turning on the rotation, the grid alignment and parent container restrictions will be invalid, and there will be Breaking Changes to be refactored! ! !

References

https://github.com/mauricius/vue-draggable-resizable
https://github.com/gorkys/vue-draggable-resizable-gorkys
https://github.com/tmrcui/vue-draggable-resizable-rotatable   
2.0.15

5 months ago

2.0.13

2 years ago

2.0.14

2 years ago

2.0.11

2 years ago

2.0.12

2 years ago

2.0.10

3 years ago

2.0.7

3 years ago

2.0.9

3 years ago

2.0.8

3 years ago

2.0.6

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago