vue2实现前端展示界面背景动态化展示

第一部分:安装插件

首先我们cmd管理员身份要进入到我们vue的的路径下:

或者直接在vscode里面点击终端也可以:

安装以下2个依赖:

npm install vanta@0.5.24
npm install three@0.121.0

第二部分:代码实现

(1)原先没有动态效果的前端页面

<template>
  <el-container class="custom-container">
    <el-main>
      <div class="login-container">
        <h2>用户登录</h2>
        <div v-if="errorMessage" class="error-message">
          {{ errorMessage }}
        </div>
        <form @submit.prevent="login" class="login-form">
          <input type="text" v-model="username" placeholder="用户名" required>
          <div class="password-container">
            <input
              :type="showPassword ? 'text' : 'password'"
              v-model="password"
              placeholder="密码"
              required
            />
            <button type="button" class="toggle-password" @click="togglePassword">
              {{ showPassword ? '隐藏' : '显示' }}
            </button>
          </div>

          <!-- 新增的注册提示 -->
          <div class="register-prompt">
            没有用户? 
            <router-link to="/register" class="register-link">点击注册</router-link>
          </div>

          <button type="submit">登录</button>
        </form>
      </div>
    </el-main>
  </el-container>
</template>

<script>
import axios from 'axios';

export default {
  data() {
    return {
      username: '', // 用户名
      password: '', // 密码
      errorMessage: '', // 错误信息
      successMessage: '', // 成功信息
      showPassword: false, // 控制密码是否明文显示
    };
  },
  methods: {
    async login() {
      try {
        const response = await axios.post('user', {
          username: this.username,
          password: this.password,
        });
        // 处理返回结果
        if (response.data.flag) {
          this.successMessage = response.data.msg; // 显示登录成功的信息
          alert(this.successMessage); // 可以弹出提示或者在页面上显示

          // 登录成功后,跳转到指定的路由
          this.$router.push({ path: '/dashboard' });
        } else {
          // 如果登录失败,显示错误信息
          this.errorMessage = response.data.msg || '登录失败,请重试。';
        }
      } catch (error) {
        // 捕获网络错误或其他异常
        this.errorMessage = '网络错误,请稍后重试。';
      }
    },
    togglePassword() {
      this.showPassword = !this.showPassword;
    },
  },
};
</script>

<style scoped>
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
}

.el-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-container {
  background-color: rgba(255, 255, 255, 0.8); /* 半透明白色背景 */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px; /* 调整表单的最大宽度 */
  width: 100%; /* 确保容器宽度根据屏幕自适应 */
  height: 350px;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* 增强阴影效果 */
  border: 1px solid #ccc; /* 添加边框 */
}
.custom-container {
  height: 700px;
  border: 1px solid #eee;
  background-image: url('../../assets/背景图片 (2).png');
  background-size: cover; /* 根据需要调整背景图片的缩放方式 */
  background-position: center; /* 背景居中 */
}

h2 {
  text-align: center;
  color: #333;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center; /* 让输入框和按钮居中 */
}
.password-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
}
input {
  width: 100%;
  max-width: 300px;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
input:focus {
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
  border-color: #4A90E2;
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  width: auto; /* 让按钮宽度自适应文字 */
  padding: 0;  /* 去掉内边距,避免撑开 */
  font-size: 14px; /* 控制文字大小 */
}

.register-prompt {
  text-align: right;
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.register-link {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}
.register-link:hover {
  text-decoration: underline;
}

button {
  background: linear-gradient(90deg, #4A90E2, #9013FE); /* 渐变色按钮 */
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
}
button:hover {
  background: linear-gradient(90deg, #357ABD, #7316E5); /* 鼠标悬浮时颜色变化 */
}

.error-message {
  color: red;
  text-align: center;
}
</style>

(2)添加完动态效果之后的前端页面

<template>
  <div ref="vantaRef" style="position: relative; width: 100%; height: 100vh;">
    <el-container class="custom-container">
      <el-main>
        <div class="login-container">
          <h2>用户登录</h2>
          <div v-if="errorMessage" class="error-message">
            {{ errorMessage }}
          </div>
          <form @submit.prevent="login" class="login-form">
            <input type="text" v-model="username" placeholder="用户名" required>
            <div class="password-container">
              <input :type="showPassword ? 'text' : 'password'" v-model="password" placeholder="密码" required />
              <button type="button" class="toggle-password" @click="togglePassword">
                {{ showPassword ? '隐藏' : '显示' }}
              </button>
            </div>

            <div class="register-prompt">
              没有用户?
              <router-link to="/register" class="register-link">点击注册</router-link>
            </div>

            <button type="submit">登录</button>
          </form>
        </div>
      </el-main>
    </el-container>
  </div>
</template>


<script>
import axios from 'axios';
import * as THREE from "three";
import BIRDS from "vanta/src/vanta.birds"; // 引入VANTA背景动画

export default {
  data() {
    return {
      username: '',
      password: '',
      errorMessage: '',
      successMessage: '',
      showPassword: false,
      vantaEffect: null, // 动态背景效果的引用
    };
  },
  methods: {
    async login() {
      try {
        const response = await axios.post('user', {
          username: this.username,
          password: this.password,
        });
        if (response.data.flag) {
          this.successMessage = response.data.msg;
          alert(this.successMessage);
          this.$router.push({ path: '/dashboard' });
        } else {
          this.errorMessage = response.data.msg || '登录失败,请重试。';
        }
      } catch (error) {
        this.errorMessage = '网络错误,请稍后重试。';
      }
    },
    togglePassword() {
      this.showPassword = !this.showPassword;
    },
  },
  mounted() {
    // 初始化动态背景
    this.vantaEffect = BIRDS({
      el: this.$refs.vantaRef, // 绑定的DOM元素
      THREE: THREE,
      mouseControls: true,
      touchControls: true,
      gyroControls: false,
      minHeight: 200.0,
      minWidth: 200.0,
      scale: 1.0,
      color1: 0x345678, // 颜色可以根据需求更改
      color2: 0x987654,
    });
  },
  beforeDestroy() {
    // 销毁动态背景效果
    if (this.vantaEffect) {
      this.vantaEffect.destroy();
    }
  },
};
</script>

<style scoped>
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
}

.el-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-container {
  background-color: rgba(255, 255, 255, 0.8); /* 半透明白色背景 */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px; /* 调整表单的最大宽度 */
  width: 100%; /* 确保容器宽度根据屏幕自适应 */
  height: 350px;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* 增强阴影效果 */
  border: 1px solid #ccc; /* 添加边框 */
}
.custom-container {
  height: 700px;
  border: 1px solid #eee;
/*   background-image: url('../../assets/背景图片 (2).png'); */
  background-size: cover; /* 根据需要调整背景图片的缩放方式 */
  background-position: center; /* 背景居中 */
}

h2 {
  text-align: center;
  color: #333;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center; /* 让输入框和按钮居中 */
}
.password-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
}
input {
  width: 100%;
  max-width: 300px;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
input:focus {
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
  border-color: #4A90E2;
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  width: auto; /* 让按钮宽度自适应文字 */
  padding: 0;  /* 去掉内边距,避免撑开 */
  font-size: 14px; /* 控制文字大小 */
}

.register-prompt {
  text-align: right;
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.register-link {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}
.register-link:hover {
  text-decoration: underline;
}

button {
  background: linear-gradient(90deg, #4A90E2, #9013FE); /* 渐变色按钮 */
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
}
button:hover {
  background: linear-gradient(90deg, #357ABD, #7316E5); /* 鼠标悬浮时颜色变化 */
}

.error-message {
  color: red;
  text-align: center;
}
</style>

第三部分:代码分析

(1)template标签

在始末位置加上div标签,并于cantaRef建立连接。

<div ref="vantaRef" style="position: relative; width: 100%; height: 100vh;">
</div>

(2)script标签

引入BIRDS库:

import * as THREE from "three";
import BIRDS from "vanta/src/vanta.birds"; // 引入VANTA背景动画

mounted 钩子中,使用 BIRDS 初始化动画效果并绑定到 vantaRef 所指向的元素:

mounted() {
  // 初始化动态背景
  this.vantaEffect = BIRDS({
    el: this.$refs.vantaRef, // 绑定的DOM元素
    THREE: THREE,
    mouseControls: true,
    touchControls: true,
    gyroControls: false,
    minHeight: 200.0,
    minWidth: 200.0,
    scale: 1.0,
    color1: 0x345678, // 颜色可以根据需求更改
    color2: 0x987654,
  });
},

然后在组件销毁前,需要移除动态背景效果,这在 beforeDestroy 中处理:

beforeDestroy() {
  // 销毁动态背景效果
  if (this.vantaEffect) {
    this.vantaEffect.destroy();
  }
}

(3)style标签

移除原先的背景图片:/* background-image: url('../../assets/背景图片 (2).png'); */

(4)更换背景图片

①在线动态图片

如果我们想要更换背景图片,我们只需要修改上面红色这个区域的路径就可以了!

②本地动态图片

见我博客http://t.csdnimg.cn/F3TOe

好啦,希望能够帮助到大家!。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

还不秃顶的计科生

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值