1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
| <template> <div ref="splitPane" class="split-pane" :class="direction" :style="{ flexDirection: direction }"> <div class="pane pane-one" :style="lengthType + ':' + paneLengthValue"> <slot name="one" /> </div>
<div style="z-index: 2" class="pane-trigger" :style="lengthType + ':' + triggerLengthValue" @mousedown="handleMouseDown" />
<div class="pane pane-two" style="z-index: 2;background-color: white"> <slot name="two" /> </div> </div> </template>
<script> export default { props: { direction: { type: String, default: 'row' },
min: { type: Number, default: 10 },
max: { type: Number, default: 90 },
paneLengthPercent: { type: Number, default: 50 },
triggerLength: { type: Number, default: 10 } }, data() { return { triggerLeftOffset: 0 // 鼠标距滑动器左(顶)侧偏移量 } }, computed: { lengthType() { return this.direction === 'row' ? 'width' : 'height' },
paneLengthValue() { return `calc(${this.paneLengthPercent}% - ${this.triggerLength / 2 + 'px'})` },
triggerLengthValue() { return this.triggerLength + 'px' } },
methods: { // 按下滑动器 handleMouseDown(e) { document.addEventListener('mousemove', this.handleMouseMove) document.addEventListener('mouseup', this.handleMouseUp)
if (this.direction === 'row') { this.triggerLeftOffset = e.pageX - e.srcElement.getBoundingClientRect().left } else { this.triggerLeftOffset = e.pageY - e.srcElement.getBoundingClientRect().top } },
// 按下滑动器后移动鼠标 handleMouseMove(e) { const clientRect = this.$refs.splitPane.getBoundingClientRect() let paneLengthPercent = 0
if (this.direction === 'row') { const offset = e.pageX - clientRect.left - this.triggerLeftOffset + this.triggerLength / 2 paneLengthPercent = (offset / clientRect.width) * 100 } else { const offset = e.pageY - clientRect.top - this.triggerLeftOffset + this.triggerLength / 2 paneLengthPercent = (offset / clientRect.height) * 100 }
if (paneLengthPercent < this.min) { paneLengthPercent = this.min } if (paneLengthPercent > this.max) { paneLengthPercent = this.max }
this.$emit('update:paneLengthPercent', paneLengthPercent) },
// 松开滑动器 handleMouseUp() { document.removeEventListener('mousemove', this.handleMouseMove) } } } </script>
<style scoped lang="scss"> .split-pane { //background: palegreen; height: 100%; display: flex; &.row { .pane { height: 100%; } .pane-trigger { height: 100%; cursor: col-resize; } } &.column { .pane { width: 100%; } .pane-trigger { width: 100%; cursor: row-resize; } } .pane-one { //background: palevioletred; } .pane-trigger { user-select: none; background: rgba(241, 241, 241, 0.95); } .pane-two { flex: 1; //background: turquoise; } } </style>
|