我的编程空间,编程开发者的网络收藏夹
学习永远不晚

vue分割面板封装实现记录

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

vue分割面板封装实现记录

本文实例为大家分享了vue分割面板封装实现的具体代码,供大家参考,具体内容如下

记录一次 分割面板的封装:

 <template>
  <div class="split-pane-wrapper" ref="outer">
    <div class="pane pane-left" :style="{ width: leftOffsetPercent }">
      <slot name="left"></slot>
    </div>
    <div
      class="pane-trigger-con"
      @mousedown="handleMousedown"
      :style="{ left: triggerLeft, width: `${triggerWidth}px` }"
    >
    //中间分割按钮
      <div class="pane-trigger-con__button">
        <div v-for="i in 10" :key="i"></div>
      </div>
    </div>
    <div class="pane pane-right" :style="{ left: leftOffsetPercent }">
      <slot name="right"></slot>
    </div>
  </div>
</template>
<script>
export default {
  name: "SplitPane",
  props: {
      //分割值
    value: {
      type: Number,
      default: 0.5,
    },
    //按钮宽度
    triggerWidth: {
      type: Number,
      default: 8,
    },
    //最大分割值/最小分割值
    min: {
      type: Number,
      default: 0.1,
    },
    max: {
      type: Number,
      default: 0.9,
    },
  },
  data() {
    return {
      // leftOffset: 0.3,
      canMove: false,
      initOffset: 0,
    };
  },
  computed: {
      //计算左边面板的宽度
    leftOffsetPercent() {
      return `${this.value * 100}%`;
    },
    //右边面板的marginleft
    triggerLeft() {
      return `calc(${this.value * 100}% - ${this.triggerWidth / 2}px)`;
    },
  },
  methods: {
      //鼠标点击  鼠标移动事件  计算偏差
    handleMousedown(event) {
      document.addEventListener("mousemove", this.handleMousemove);
      document.addEventListener("mouseup", this.handleMouseup);
      this.initOffset =
        event.pageX - event.class="lazy" data-srcElement.getBoundingClientRect().left;
      this.canMove = true;
    },
    //鼠标移动事件 计算移动距离
    handleMousemove(event) {
      if (!this.canMove) return;
      const outerRect = this.$refs.outer.getBoundingClientRect();
      let offsetPercent =
        (event.pageX -
          this.initOffset +
          this.triggerWidth / 2 -
          outerRect.left) /
        outerRect.width;
      if (offsetPercent < this.min) offsetPercent = this.min;
      if (offsetPercent > this.max) offsetPercent = this.max;
      // this.$emit('input', offsetPercent)
      this.$emit("update:value", offsetPercent);
    },
    handleMouseup() {
      this.canMove = false;
    },
  },
};
</script>
<style lang="scss">
.split-pane-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  .pane {
    position: absolute;
    top: 0;
    height: 100%;
    &-left {
      background: transparent;
      padding: 10px;
      box-sizing: border-box;
    }
    &-right {
      box-sizing: border-box;
      right: 0;
      bottom: 0;
      background: transparent;
      padding: 10px;
    }
    &-trigger-con {
      height: 100%;
      background: rgb(240, 240, 240);
      position: absolute;
      top: 0;
      z-index: 10;
      user-select: none;
      cursor: col-resize;
      .pane-trigger-con__button {
        border: 1px solid lightgrey;
        width: calc(100% - 2px);
        height: 20px;
        margin: 0 auto;
        position: relative;
        top: 50%; 
        transform: translateY(-50%);
        border-radius: 2px;
        div {
          margin: 1px 0;
          width: 100%;
          height: 1px;
          background-color: lightgrey;
        }
      }
    }
  }
}
</style>

页面使用split-pane:

 <div class="split-pane-con">
        <split-pane :value.sync="offset">
          <div slot="left"><el-input></el-input></div>
          <div slot="right"><el-input></el-input></div>
        </split-pane>
  </div>
      
  data() {
    return {
      offset: 0.4,
    };
  },

效果:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

vue分割面板封装实现记录

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

vue-Split如何实现面板分割

这篇文章主要为大家展示了“vue-Split如何实现面板分割”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“vue-Split如何实现面板分割”这篇文章吧。具体内容如下