Home  >  Article  >  Web Front-end  >  How to use Vue to implement loading animation and progress bar effects?

How to use Vue to implement loading animation and progress bar effects?

PHPz
PHPzOriginal
2023-06-27 16:36:106795browse

Vue is a popular front-end framework that greatly simplifies the development of a website or application. One of the common features is loading animation and progress bar effects to make the interface more attractive and interactive. In this article, we will explore how to achieve these effects using Vue.

  1. Loading animation effect

Loading animation effect means that while waiting for data to be loaded, an animation effect will appear on the website or application to indicate that the data is loading. This helps convey the concept of wait time to the user, thus preventing them from getting bored or losing interest. The following are the steps to achieve the loading animation effect:

1.1 In the Vue component, create a data attribute, namely isLoading. This will be used to determine if the data is loading.

1.2 Use the v-if directive in the component to display the loading animation when isLoading is true.

1.3 In the CSS file, add the loading animation style. For example, you can use rotation animation:

.loading {
  animation: spin 1s linear infinite;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

The complete code is as follows:

<template>
  <div>
    <div v-if="isLoading" class="loading"></div>
    <div v-else>
      <!-- 数据加载完了后显示的内容 -->
    </div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isLoading: true
    };
  },
  mounted() {
    // 模拟数据加载
    setTimeout(() => {
      this.isLoading = false;
    }, 3000);
  }
};
</script>

<style>
.loading {
  animation: spin 1s linear infinite;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
</style>
  1. Progress bar effect

The progress bar effect refers to the execution of a certain When performing some tasks, a dynamic progress bar appears on the website or application to indicate the progress of the task. This both encourages the user to wait and provides the user with a realistic idea of ​​how long the task will take to execute. The following are the steps to achieve the progress bar effect:

2.1 In the Vue component, create a data attribute, namely progress. This will be used to indicate task progress.

2.2 Use the v-bind directive in the component to bind progress to the value attribute of the progress bar.

2.3 In the CSS file, add the style of the progress bar.

.progress {
  width: 100%;
  position: relative;
  height: 15px;
  background-color: #ddd;
  margin: 20px 0;
}

.progress-bar {
  height: 100%;
  position: absolute;
  background-color: #3498db;
  transition: width 0.3s ease-in-out;
}

The complete code is as follows:

<template>
  <div>
    <div class="progress">
      <div class="progress-bar" :style="{ width: progress + '%' }"></div>
    </div>
    <button @click="startTask">开始任务</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      progress: 0
    };
  },
  methods: {
    startTask() {
      setInterval(() => {
        this.progress += 10;
        if (this.progress >= 100) {
          clearInterval();
        }
      }, 1000);
    }
  }
};
</script>

<style>
.progress {
  width: 100%;
  position: relative;
  height: 15px;
  background-color: #ddd;
  margin: 20px 0;
}

.progress-bar {
  height: 100%;
  position: absolute;
  background-color: #3498db;
  transition: width 0.3s ease-in-out;
}
</style>

Conclusion

The above are the steps to use Vue to achieve loading animation and progress bar effects. These features can make the interface more engaging and interactive when users need to wait to process large amounts of data or perform other expensive calculations. This will help improve user experience and gain more users for your app or website.

The above is the detailed content of How to use Vue to implement loading animation and progress bar effects?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn