Vue3+ts——动画Loading以及引入本地随机背景效果

简介: 动画Loading以及引入本地随机背景效果

Vue3+ts——随机生成背景图片

我这里是采用loading为例子制作的随机背景效果(底部附上代码和成品效果展示)

这里需要注意一下,数组的格式必须要用下面这种格式创建对象

new URL("../assets/image/myFileImg/nv.png", import.meta.url).href;

或者使用这种方法引入本地图片路径

<div :style="'background-image: url(' + state.icon+ '); background-size:100% 100%;width:100%;height:100vh'">
</div>
const state = reactive({
  icon: new URL("../assets/image/index1.jpg", import.meta.url).href,
});

如果使用直接使用“…/assets/image/myFileImg/nv.png” Vue3是不支持的。

随机色最好是使用computed去写,这里原因就不多说了。

首先先做出加载的动画效果

<template>
  <div class="com__box" :style="backgourndStyle">
    <!-- loading -->
    <div class="loading">
      <div class="shape shape-1"></div>
      <div class="shape shape-2"></div>
      <div class="shape shape-3"></div>
      <div class="shape shape-4"></div>
    </div>
  </div>
</template>
<style lang="less" scoped>
.com__box {
  width: 100%;
  // background-color: transparent;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex;
  height: calc(100vh - 50px);
  align-items: center;
  justify-content: center;
}
.loading {
  width: 20px;
  height: 20px;
  position: relative;
  animation: animationContainer 1s ease infinite;
}
.shape {
  width: 10px;
  height: 10px;
  position: absolute;
}
.shape-1 {
  background-color: #845ec2;
  left: 0;
  border-top-left-radius: 100%;
  animation: animationShape1 0.5s ease infinite alternate;
}
.shape-2 {
  background-color: #009efa;
  right: 0;
  border-top-right-radius: 100%;
  animation: animationShape2 0.5s ease infinite alternate;
}
.shape-3 {
  background-color: #00d2fc;
  bottom: 0;
  border-bottom-left-radius: 100%;
  animation: animationShape3 0.5s ease infinite alternate;
}
.shape-4 {
  background-color: #4ffbdf;
  right: 0;
  bottom: 0;
  border-bottom-right-radius: 100%;
  animation: animationShape4 0.5s ease infinite alternate;
}
@keyframes animationContainer {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animationShape1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-3px, -3px);
  }
}
@keyframes animationShape2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(3px, -3px);
  }
}
@keyframes animationShape3 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-3px, 3px);
  }
}
@keyframes animationShape4 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(3px, 3px);
  }
}
</style>

效果做好后可以做一个文字的动画效果。

文字动画效果

cssAnimatopy

下方代码中的 @import "../assets/css/animatopy.css";在上方的链接中查看即可

<template>
  <div class="com__box" :style="backgourndStyle">
    <!-- loading -->
    <div class="loading">
      <div class="shape shape-1"></div>
      <div class="shape shape-2"></div>
      <div class="shape shape-3"></div>
      <div class="shape shape-4"></div>
    </div>
    <div class="p animated rubberBand">
      加载中请稍后...
    </div>
  </div>
</template>
<style lang="less" scoped>
/* 这里需要引入创建动画样式 */
@import "../assets/css/animatopy.css";
.com__box {
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex;
  height: calc(100vh - 50px);
  align-items: center;
  justify-content: center;
  .p {
    margin-left: 20px;
    font-size: 24px;
    font-family: FBDXYT;
    font-weight: bold;
    background-image: -webkit-linear-gradient(
      left,
      #845ec2,
      #009efa,
      #00d2fc,
      #4ffbdf
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
</style>

最后就是生成背景随机数

创建一个数组,路径要以这种格式写(当然你也可以用更好的方法来拆开写)

let arr = reactive([
    { bg: new URL("../assets/image/01.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/02.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/03.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/04.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/05.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/06.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/07.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/08.jpg",import.meta.url).href },
    {
      bg: "../assets/image/01.jpg",
    },
  ]);

获取数组对象中的随机数

let imgName  = arr[Math.floor(Math.random() * arr.length)].bg;
let style = "background: url('"+ imgName +" ')"

放在计算属性中

const backgourndStyle = computed(() => {
  let arr = reactive([
    { bg: new URL("../assets/image/01.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/02.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/03.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/04.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/05.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/06.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/07.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/08.jpg",import.meta.url).href },
    {
      bg: "../assets/image/01.jpg",
    },
  ]);
  let imgName  = arr[Math.floor(Math.random() * arr.length)].bg;
  let style = "background: url('"+ imgName +" ')"
  return style;
});

最后将计算属性通过动态style放在标签中

<div class="com__box" :style="backgourndStyle"></div>

看下效果:

3b2a9f4266114dd49cb305b1b8833ef2.gif

中间闪烁的其他页面忽略即可,本章是只讲述了自己封装的Loading组件的动画效果,大家直接使用完整代码即可

完整代码:

<template>
  <div class="com__box" :style="backgourndStyle">
    <!-- loading -->
    <div class="loading">
      <div class="shape shape-1"></div>
      <div class="shape shape-2"></div>
      <div class="shape shape-3"></div>
      <div class="shape shape-4"></div>
    </div>
    <div class="p animated rubberBand">
      加载中请稍后...
    </div>
  </div>
</template>
<script lang='ts' setup>
import { ref, onMounted, reactive, computed } from "vue";
const backgourndStyle = computed(() => {
  let arr = reactive([
    { bg: new URL("../assets/image/01.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/02.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/03.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/04.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/05.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/06.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/07.jpg",import.meta.url).href },
    { bg: new URL("../assets/image/08.jpg",import.meta.url).href },
    {
      bg: "../assets/image/01.jpg",
    },
  ]);
  let imgName  = arr[Math.floor(Math.random() * arr.length)].bg;
  let style = "background: url('"+ imgName +" ')"
  return style;
});
</script>
<style lang="less" scoped>
@import "../assets/css/animatopy.css";
.com__box {
  width: 100%;
  // background-color: transparent;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex;
  height: calc(100vh - 50px);
  align-items: center;
  justify-content: center;
  .p {
    margin-left: 20px;
    font-size: 24px;
    font-family: FBDXYT;
    font-weight: bold;
    background-image: -webkit-linear-gradient(
      left,
      #845ec2,
      #009efa,
      #00d2fc,
      #4ffbdf
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.loading {
  width: 20px;
  height: 20px;
  position: relative;
  animation: animationContainer 1s ease infinite;
}
.shape {
  width: 10px;
  height: 10px;
  position: absolute;
}
.shape-1 {
  background-color: #845ec2;
  left: 0;
  border-top-left-radius: 100%;
  animation: animationShape1 0.5s ease infinite alternate;
}
.shape-2 {
  background-color: #009efa;
  right: 0;
  border-top-right-radius: 100%;
  animation: animationShape2 0.5s ease infinite alternate;
}
.shape-3 {
  background-color: #00d2fc;
  bottom: 0;
  border-bottom-left-radius: 100%;
  animation: animationShape3 0.5s ease infinite alternate;
}
.shape-4 {
  background-color: #4ffbdf;
  right: 0;
  bottom: 0;
  border-bottom-right-radius: 100%;
  animation: animationShape4 0.5s ease infinite alternate;
}
@keyframes animationContainer {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animationShape1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-3px, -3px);
  }
}
@keyframes animationShape2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(3px, -3px);
  }
}
@keyframes animationShape3 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-3px, 3px);
  }
}
@keyframes animationShape4 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(3px, 3px);
  }
}
</style>
相关文章
|
22天前
|
缓存 JavaScript UED
Vue3中v-model在处理自定义组件双向数据绑定时有哪些注意事项?
在使用`v-model`处理自定义组件双向数据绑定时,要仔细考虑各种因素,确保数据的准确传递和更新,同时提供良好的用户体验和代码可维护性。通过合理的设计和注意事项的遵循,能够更好地发挥`v-model`的优势,实现高效的双向数据绑定效果。
126 64
|
22天前
|
JavaScript 前端开发 API
Vue 3 中 v-model 与 Vue 2 中 v-model 的区别是什么?
总的来说,Vue 3 中的 `v-model` 在灵活性、与组合式 API 的结合、对自定义组件的支持等方面都有了明显的提升和改进,使其更适应现代前端开发的需求和趋势。但需要注意的是,在迁移过程中可能需要对一些代码进行调整和适配。
101 60
|
22天前
|
前端开发 JavaScript 测试技术
Vue3中v-model在处理自定义组件双向数据绑定时,如何避免循环引用?
Web 组件化是一种有效的开发方法,可以提高项目的质量、效率和可维护性。在实际项目中,要结合项目的具体情况,合理应用 Web 组件化的理念和技术,实现项目的成功实施和交付。通过不断地探索和实践,将 Web 组件化的优势充分发挥出来,为前端开发领域的发展做出贡献。
28 8
|
21天前
|
存储 JavaScript 数据管理
除了provide/inject,Vue3中还有哪些方式可以避免v-model的循环引用?
需要注意的是,在实际开发中,应根据具体的项目需求和组件结构来选择合适的方式来避免`v-model`的循环引用。同时,要综合考虑代码的可读性、可维护性和性能等因素,以确保系统的稳定和高效运行。
21 1
|
21天前
|
JavaScript
Vue3中使用provide/inject来避免v-model的循环引用
`provide`和`inject`是 Vue 3 中非常有用的特性,在处理一些复杂的组件间通信问题时,可以提供一种灵活的解决方案。通过合理使用它们,可以帮助我们更好地避免`v-model`的循环引用问题,提高代码的质量和可维护性。
32 1
|
22天前
|
JavaScript
在 Vue 3 中,如何使用 v-model 来处理自定义组件的双向数据绑定?
需要注意的是,在实际开发中,根据具体的业务需求和组件设计,可能需要对上述步骤进行适当的调整和优化,以确保双向数据绑定的正确性和稳定性。同时,深入理解 Vue 3 的响应式机制和组件通信原理,将有助于更好地运用 `v-model` 实现自定义组件的双向数据绑定。
|
25天前
|
JavaScript 前端开发 API
从Vue 2到Vue 3的演进
从Vue 2到Vue 3的演进
37 0
|
25天前
|
JavaScript API 开发者
Vue是如何进行组件化的
Vue是如何进行组件化的
|
27天前
|
JavaScript 前端开发 开发者
vue 数据驱动视图
总之,Vue 数据驱动视图是一种先进的理念和技术,它为前端开发带来了巨大的便利和优势。通过理解和应用这一特性,开发者能够构建出更加动态、高效、用户体验良好的前端应用。在不断发展的前端领域中,数据驱动视图将继续发挥重要作用,推动着应用界面的不断创新和进化。
|
1天前
|
JavaScript 关系型数据库 MySQL
基于VUE的校园二手交易平台系统设计与实现毕业设计论文模板
基于Vue的校园二手交易平台是一款专为校园用户设计的在线交易系统,提供简洁高效、安全可靠的二手商品买卖环境。平台利用Vue框架的响应式数据绑定和组件化特性,实现用户友好的界面,方便商品浏览、发布与管理。该系统采用Node.js、MySQL及B/S架构,确保稳定性和多功能模块设计,涵盖管理员和用户功能模块,促进物品循环使用,降低开销,提升环保意识,助力绿色校园文化建设。