vue框架下的一个信息动态展示的需求

需求1:下图所示顶部的节点的数量是动态的,只展示四个但总数可能有10个或12个甚至更多,点击左右按钮可以浏览到全部的节点。
需求2:顶部的节点和下部的信息展示是绑定的,点击哪个节点就展示哪个节点的信息
需求3:不主动点击节点,也会定时自动切换

问题:框架是vue2,想知道有没有第三方组件可以直接用,没有的话,使用html+css如何实现呢?

img

第一个需求你可用Vue Carousel


<template>
  <div>
    <carousel :per-page="4" :autoplay="true" :loop="true">
      <slide v-for="node in nodes" :key="node.id">
        <div class="node">{{ node.name }}</div>
      </slide>
    </carousel>
  </div>
</template>

<script>
import { Carousel, Slide } from 'vue-carousel';

export default {
  components: {
    Carousel,
    Slide,
  },
  data() {
    return {
      nodes: [
        { id: 1, name: 'Node 1' },
        { id: 2, name: 'Node 2' },
        { id: 3, name: 'Node 3' },
        // Add more nodes here
      ],
    };
  },
};
</script>

<style>
.node {
  width: 100px;
  height: 50px;
  background-color: #ccc;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
</style>


不知道你这个问题是否已经解决, 如果还没有解决的话:
  • 这篇博客: vue中实现全屏以及对退出全屏的监听中的  2、css部分,全屏后的部分需要单独加样式 部分也许能够解决你的问题。
  • 以下回答由chatgpt基于相关博客总结生成:

    问题回答:

    在Vue框架中,如何实现一个动态展示信息的需求?

    对于这个需求,在Vue框架中,我们可以通过以下步骤来实现:

    1. 创建一个Vue组件,用于展示顶部节点的数量和具体信息。

    2. 在Vue组件中,定义一个数据属性用于存储所有的节点信息以及当前展示的节点索引。

    3. 使用v-for指令,将节点信息循环渲染到顶部节点列表中,并限制最多展示四个节点。

    4. 在顶部节点列表中,为每个节点添加点击事件,用于切换当前展示的节点。

    5. 绑定一个定时器,用于自动切换展示的节点。

    下面是一个具体的实现示例,以Vue2框架为例:

    <template>
      <div>
        <div class="top-nodes">
          <button @click="previousNode">上一个</button>
          <div v-for="(node, index) in nodes.slice(currentIndex, currentIndex + 4)" :key="index">
            <div @click="selectNode(index)">
              <!-- 在这里显示节点信息 -->
              {{ node }}
            </div>
          </div>
          <button @click="nextNode">下一个</button>
        </div>
        <div class="bottom-info">
          <!-- 在这里显示当前选中节点的信息 -->
          {{ selectedNodeInfo }}
        </div>
      </div>
    </template>
    
    <script>
    export default {
      data() {
        return {
          nodes: ['节点1', '节点2', '节点3', '节点4', '节点5', '节点6', '节点7', '节点8', '节点9', '节点10'],
          currentIndex: 0,
          selectedNodeIndex: 0
        };
      },
      computed: {
        selectedNodeInfo() {
          // 根据选中节点的索引获取对应的信息
          return this.nodes[this.selectedNodeIndex];
        }
      },
      mounted() {
        // 每隔一段时间自动切换展示的节点
        setInterval(() => {
          this.nextNode();
        }, 5000);
      },
      methods: {
        previousNode() {
          // 切换到上一个节点
          this.currentIndex = Math.max(this.currentIndex - 1, 0);
        },
        nextNode() {
          // 切换到下一个节点
          this.currentIndex = Math.min(this.currentIndex + 1, this.nodes.length - 4);
        },
        selectNode(index) {
          // 选择一个节点并更新选中节点的索引
          this.selectedNodeIndex = this.currentIndex + index;
        }
      }
    };
    </script>
    
    <style>
    .top-nodes {
      display: flex;
      align-items: center;
    }
    
    .top-nodes button {
      margin-right: 10px;
    }
    
    .bottom-info {
      margin-top: 20px;
    }
    </style>
    

    这样,我们就实现了一个在Vue框架中动态展示信息的需求,包括点击节点切换展示信息、左右按钮切换节点、定时自动切换节点等功能。

    关于第三方组件:

    在Vue框架中,有很多第三方组件库可以使用,例如Element UI、Vuetify等,它们提供了很多常用组件和功能。对于这个需求,以上提供的示例已经可以满足要求,如果你希望使用第三方组件库,可以根据具体的组件库文档来选择合适的组件进行实现。


如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^