欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue.JS实现垂直方向展开、收缩不定高度模块的JS组件

程序员文章站 2023-11-16 11:43:22
需求分析: 如图,有很多高度不固定的模块(图中只显示两个,本人项目有十三个),点击模块标题展开相应的模块,再次点击此模块匿藏,如何实现此需求并实现复用? ...

需求分析:

如图,有很多高度不固定的模块(图中只显示两个,本人项目有十三个),点击模块标题展开相应的模块,再次点击此模块匿藏,如何实现此需求并实现复用? 

 点击红框前:

Vue.JS实现垂直方向展开、收缩不定高度模块的JS组件 

 点击后:

Vue.JS实现垂直方向展开、收缩不定高度模块的JS组件

难点分析:

模块高度不固定。比如,本人一开始想到的方法如下:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>title</title>
  <style>
    .box{
      height:500px;
      background-color:black; 
       overflow: hidden;            
    }
    .mybox-leave-active,.mybox-enter-active{
      transition: all 1s ease; 
    }
    .mybox-leave-active,.mybox-enter{
      height:0px !important;
    }
    .mybox-leave,.mybox-enter-active{
      height: 500px;
    }
  </style>
</head>
<body>
<div id="box">
  <transition name="mybox">
    <div class="box" v-show="boxshow"></div>
  </transition>
  <button @click="togglebox">按钮</button>
</div>
</body>
<script src="../bower_components/vue/dist/vue.js"></script>
<script>
  new vue({
    el:'#box',
    data:{
      boxshow:false
    },
    methods:{

      togglebox:function(){
        this.boxshow = !this.boxshow;
      }
    }   
  });
</script>
</html>

这种方法确实可以实现点击展开,再次点击收缩的需求,但是有一个明显的缺点:限定了容器的高度,也就是每个模块都需要固定高度,并不适用于需求场景。

解决方案:

1、实现一个函数式组件

本人命名为vertical-toggle.js
// created by xiaoqiang on 17/04/2018.
const eltransition = '0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out'
const transition = {
 'before-enter' (el) {
  el.style.transition = eltransition
  if (!el.dataset) el.dataset = {}
  el.dataset.oldpaddingtop = el.style.paddingtop
  el.dataset.oldpaddingbottom = el.style.paddingbottom
  el.style.height = 0
  el.style.paddingtop = 0
  el.style.paddingbottom = 0
 },
 'enter' (el) {
  el.dataset.oldoverflow = el.style.overflow
  if (el.scrollheight !== 0) {
   el.style.height = el.scrollheight + 'px'
   el.style.paddingtop = el.dataset.oldpaddingtop
   el.style.paddingbottom = el.dataset.oldpaddingbottom
  } else {
   el.style.height = ''
   el.style.paddingtop = el.dataset.oldpaddingtop
   el.style.paddingbottom = el.dataset.oldpaddingbottom
  }
  el.style.overflow = 'hidden'
 },
 'after-enter' (el) {
  el.style.transition = ''
  el.style.height = ''
  el.style.overflow = el.dataset.oldoverflow
 },
 'before-leave' (el) {
  if (!el.dataset) el.dataset = {}
  el.dataset.oldpaddingtop = el.style.paddingtop
  el.dataset.oldpaddingbottom = el.style.paddingbottom
  el.dataset.oldoverflow = el.style.overflow
  el.style.height = el.scrollheight + 'px'
  el.style.overflow = 'hidden'
 },
 'leave' (el) {
  if (el.scrollheight !== 0) {
   el.style.transition = eltransition
   el.style.height = 0
   el.style.paddingtop = 0
   el.style.paddingbottom = 0
  }
 },
 'after-leave' (el) {
  el.style.transition = ''
  el.style.height = ''
  el.style.overflow = el.dataset.oldoverflow
  el.style.paddingtop = el.dataset.oldpaddingtop
  el.style.paddingbottom = el.dataset.oldpaddingbottom
 }
}
export default {
 name: 'verticaltoggle',
 functional: true,
 render (h, { children }) {
  const data = {
   on: transition
  }
  return h('transition', data, children)
 }
}

2、引用此组件

Vue.JS实现垂直方向展开、收缩不定高度模块的JS组件 

 在components中注册了此组件:

Vue.JS实现垂直方向展开、收缩不定高度模块的JS组件

即可在teamplate中引用,请留意红框文字说明部分。

Vue.JS实现垂直方向展开、收缩不定高度模块的JS组件 

至此,vue.js实现垂直展开、收缩不定高度模块组件实现完成及应用均已完成。 

 实现效果:

Vue.JS实现垂直方向展开、收缩不定高度模块的JS组件

总结

以上所述是小编给大家介绍的vue.js实现垂直方向展开、收缩不定高度模块的js组件,希望对大家有所帮助