【动画设计的vue后台管理欢迎页】

本文详细介绍了如何使用Vue.js创建一个具有动画效果的欢迎页面,包括模板、样式和关键帧动画的实现。通过实例代码,学习者可以了解如何结合Vue Router和CSS动画,为后台管理系统提供一个视觉上吸引人的初始界面。
摘要由CSDN通过智能技术生成

动画设计的vue欢迎页

1.可以复制参考

代码如下(示例):

<template>
  <div class="jianbian">
    <!-- <el-card>
    
    </el-card> -->
    <router-view></router-view>
    <h1>欢迎您进入后台管理系统</h1>
    <!-- 内容区域 -->
    <!-- <img src="../assets/src=http___p4.itc.cn_q_70_images01_20210506_628477c0733b44ac898ed640b2e473c1.jpeg&refer=http___p4.itc.webp" alt class="tupian-img" /> -->
  </div>
</template>

<script>
export default {
  data() {
    return {};
  },
  created() {},
  mounted() {},
  methods: {},
};
</script>

<style scoped>
h1 {
  overflow: hidden;
  font-size: 80px;
  width: 0;
  height: 150px;
  line-height: 150px;
  margin: 100px auto;
  color: #fff;
  /* background: lightcoral; */
  white-space: nowrap;
  animation: w 4s steps(13) forwards;
  text-align: center;
}
@keyframes w {
  0% {
    width: 0;
  }
  100% {
    width: 1100px;
  }
}

.tupian-img {
  width: 1100px;
  height: 500px;
  /* margin-top:20px; */
}
.el-card {
  width: 100%;
  height: 500px;
}
.jianbian {
  height: 500px;
  width: 100%;
  /* margin: 0;
            padding: 0; */
  font-family: "montserrat";
  background-image: linear-gradient(
    45deg,
    #2c3e50,
    #27ae60,
    #2980b9,
    #e74c3c,
    #8e44ad
  );
  background-size: 400%;
  animation: bganimation 15s infinite;
  margin-top: -100px;
}
@keyframes bganimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
</style>

在这里插入图片描述

提示:这里对文章进行总结:
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值