【若依前后端分离】登录页面背景加入轮播视频

轮播图:【若依前后端分离】登录页面背景加入轮播图_vue 轮播图登入页-CSDN博客

1.Vue 组件的模板部分

视频容器 :使用一个 div 元素作为视频的容器,具有样式 video-container

html 复制代码
<div class="video-container">
  <video :src="currentVideoSrc" autoplay muted loop :class="{ active: isActive }"></video>
</div>
  • :src="currentVideoSrc":使用 Vue 的数据绑定将视频的 src 属性设置为 currentVideoSrc,这个属性会动态地指向当前播放的视频路径。
  • autoplay:视频加载后自动播放。
  • muted:视频静音播放。
  • loop:视频循环播放。
  • :class="{ active: isActive }":根据 isActive 的值动态添加或移除 active 类,以控制视频的显示和隐藏。

2.JavaScript 部分

数据属性定义

  • videos:一个包含视频路径的数组。
  • currentIndex:用于跟踪当前播放的视频索引。
javascript 复制代码
data() {
  return {
    videos: [
      require('@/assets/videos/video.mp4'),
      // 添加更多视频路径
    ],
    currentIndex: 0,
    // 其他数据属性...
  };
},

计算属性

  • currentVideoSrc:动态获取当前播放的视频路径。
  • isActive:用于控制视频是否处于激活状态。
javascript 复制代码
computed: {
  currentVideoSrc() {
    return this.videos[this.currentIndex];
  },
  isActive() {
    return this.currentIndex === 0; // 或者根据需求设置其他条件
  }
},

播放视频的方法

  • playNextVideo:定时更改 currentIndex 来循环播放视频。
javascript 复制代码
methods: {
  playNextVideo() {
    setInterval(() => {
      this.currentIndex = (this.currentIndex + 1) % this.videos.length;
    }, 5000); // 每 5 秒切换一次视频
  },
  // 其他方法...
},

生命周期钩子

  • mounted 钩子中调用 playNextVideo 方法。确保组件挂载后视频自动播放。
javascript 复制代码
mounted() {
  this.playNextVideo();
},

3.样式

css 复制代码
.video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.video-container video.active {
  opacity: 1;
}

4.全部代码

javascript 复制代码
<template>
  <div class="login">

    <div class="video-container">
      <video :src="currentVideoSrc" autoplay muted loop :class="{ active: isActive }"></video>
    </div>

    <el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
      <h3 class="title">XXXX系统</h3>
      <el-form-item prop="username">
        <el-input
          v-model="loginForm.username"
          type="text"
          auto-complete="off"
          placeholder="账号"
        >
          <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon"/>
        </el-input>
      </el-form-item>
      <el-form-item prop="password">
        <el-input
          v-model="loginForm.password"
          type="password"
          auto-complete="off"
          placeholder="密码"
          @keyup.enter.native="handleLogin"
        >
          <svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon"/>
        </el-input>
      </el-form-item>
      <el-form-item prop="code" v-if="captchaEnabled">
        <el-input
          v-model="loginForm.code"
          auto-complete="off"
          placeholder="验证码"
          style="width: 63%"
          @keyup.enter.native="handleLogin"
        >
          <svg-icon slot="prefix" icon-class="validCode" class="el-input__icon input-icon"/>
        </el-input>
        <div class="login-code">
          <img :src="codeUrl" @click="getCode" class="login-code-img"/>
        </div>
      </el-form-item>
      <el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">记住密码</el-checkbox>
      <el-form-item style="width:100%;">
        <el-button
          :loading="loading"
          size="medium"
          type="primary"
          style="width:100%;"
          @click.native.prevent="handleLogin"
        >
          <span v-if="!loading">登 录</span>
          <span v-else>登 录 中...</span>
        </el-button>
        <div style="float: right;" v-if="register">
          <router-link class="link-type" :to="'/register'">立即注册</router-link>
        </div>
      </el-form-item>
    </el-form>
    <!--  底部  -->
    <div class="el-login-footer">
      <span>Copyright © 2018-2023 ruoyi.vip All Rights Reserved.</span>
    </div>
  </div>
</template>

<script>
import {getCodeImg} from "@/api/login";
import Cookies from "js-cookie";
import {decrypt, encrypt} from '@/utils/jsencrypt'
import {listMinAlarmNumeric} from "@/api/inventory/inventory";

export default {
  name: "Login",
  data() {
    return {
      //轮播视频
      videos: [
        require('@/assets/videos/hm_video.mp4'),
        // 添加更多视频路径
      ],
      currentIndex: 0,
      codeUrl: "",
      loginForm: {
        username: "admin",
        password: "admin123",
        rememberMe: false,
        code: "",
        uuid: ""
      },
      loginRules: {
        username: [
          {required: true, trigger: "blur", message: "请输入您的账号"}
        ],
        password: [
          {required: true, trigger: "blur", message: "请输入您的密码"}
        ],
        code: [{required: true, trigger: "change", message: "请输入验证码"}]
      },
      loading: false,
      // 验证码开关
      captchaEnabled: true,
      // 注册开关
      register: false,
      redirect: undefined
    };
  },

  //轮播视频
  computed: {
    currentVideoSrc() {
      return this.videos[this.currentIndex];
    },
    isActive() {
      return this.currentIndex === 0; // 或者根据需求设置其他条件
    }
  },
  mounted() {
    this.playNextVideo();
  },


  watch: {
    $route: {
      handler: function (route) {
        this.redirect = route.query && route.query.redirect;
      },
      immediate: true
    }
  },
  created() {
    this.getCode();
    this.getCookie();
    // this.getMinAlarmNumeric();
  },
  methods: {
    //轮播视频
    playNextVideo() {
      setInterval(() => {
        this.currentIndex = (this.currentIndex + 1) % this.videos.length;
      }, 5000); // 每 5 秒切换一次视频
    },

    // getMinAlarmNumeric() {
    //   listMinAlarmNumeric().then(res => {
    //     this.$store.commit("noticeNum/SET_INVENTORY_ALARM_NUMERIC_SUM", res.total);
    //   })
    // },
    getCode() {
      getCodeImg().then(res => {
        this.captchaEnabled = res.captchaEnabled === undefined ? true : res.captchaEnabled;
        if (this.captchaEnabled) {
          this.codeUrl = "data:image/gif;base64," + res.img;
          this.loginForm.uuid = res.uuid;
        }
      });
    },
    getCookie() {
      const username = Cookies.get("username");
      const password = Cookies.get("password");
      const rememberMe = Cookies.get('rememberMe')
      this.loginForm = {
        username: username === undefined ? this.loginForm.username : username,
        password: password === undefined ? this.loginForm.password : decrypt(password),
        rememberMe: rememberMe === undefined ? false : Boolean(rememberMe)
      };
    },
    handleLogin() {
      this.$refs.loginForm.validate(valid => {
        if (valid) {
          this.loading = true;
          if (this.loginForm.rememberMe) {
            Cookies.set("username", this.loginForm.username, {expires: 30});
            Cookies.set("password", encrypt(this.loginForm.password), {expires: 30});
            Cookies.set('rememberMe', this.loginForm.rememberMe, {expires: 30});
          } else {
            Cookies.remove("username");
            Cookies.remove("password");
            Cookies.remove('rememberMe');
          }

          this.$store.dispatch("Login", this.loginForm).then(() => {
            this.$router.push({path: this.redirect || "/"}).catch(() => {
            });

          }).catch(() => {
            this.loading = false;
            if (this.captchaEnabled) {
              this.getCode();
            }
          });
        }
      });
    }
  }
};
</script>

<style rel="stylesheet/scss" lang="scss">
.login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  //background-image: url("../assets/images/login-background.jpg");
  background-size: cover;
}

.title {
  margin: 0px auto 30px auto;
  text-align: center;
  color: #707070;
}

.login-form {
  border-radius: 6px;
  background: #ffffff;
  width: 400px;
  padding: 25px 25px 5px 25px;

  .el-input {
    height: 38px;

    input {
      height: 38px;
    }
  }

  .input-icon {
    height: 39px;
    width: 14px;
    margin-left: 2px;
  }
}

.login-tip {
  font-size: 13px;
  text-align: center;
  color: #bfbfbf;
}

.login-code {
  width: 33%;
  height: 38px;
  float: right;

  img {
    cursor: pointer;
    vertical-align: middle;
  }
}

.el-login-footer {
  height: 40px;
  line-height: 40px;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  letter-spacing: 1px;
}

.login-code-img {
  height: 38px;
}

.video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.video-container video.active {
  opacity: 1;
}
</style>

小白记录学习日常~

相关推荐
崔庆才丨静觅7 小时前
hCaptcha 验证码图像识别 API 对接教程
前端
passerby60618 小时前
完成前端时间处理的另一块版图
前端·github·web components
掘了8 小时前
「2025 年终总结」在所有失去的人中,我最怀念我自己
前端·后端·年终总结
崔庆才丨静觅8 小时前
实用免费的 Short URL 短链接 API 对接说明
前端
崔庆才丨静觅8 小时前
5分钟快速搭建 AI 平台并用它赚钱!
前端
崔庆才丨静觅9 小时前
比官方便宜一半以上!Midjourney API 申请及使用
前端
Moment9 小时前
富文本编辑器在 AI 时代为什么这么受欢迎
前端·javascript·后端
崔庆才丨静觅9 小时前
刷屏全网的“nano-banana”API接入指南!0.1元/张量产高清创意图,开发者必藏
前端
剪刀石头布啊9 小时前
jwt介绍
前端
爱敲代码的小鱼9 小时前
AJAX(异步交互的技术来实现从服务端中获取数据):
前端·javascript·ajax