vue编写一个登录页面,使用Tab栏实现“账号登录”和“二维码登录”这两种方式的切换

简介: vue编写一个登录页面,使用Tab栏实现“账号登录”和“二维码登录”这两种方式的切换

## 编写一个登录页面,使用Tab栏实现“账号登录”和“二维码登录”这两种方式的切换,并通过transition组件结合animate.css实现切换时的动画效果

1.CSS样式

编写自己想要的大小,颜色等


```html

#content{

   width: 400px;;

   margin: 60px auto;

 }

 .title{

   height: 50px;

   border-bottom: 1px solid #e1e7ec;

   text-align: center;

 }

 #content a{

   text-decoration: none;

   color: black;

   font-size: 16px;

   background: #f1f1f1;

   padding: 5px 10px;

   margin: 0 10px;

   border-radius: 5px;

 }

 .form-input{

   height: 46px;

   line-height: 46px;

   margin-top: 10px;;

 }

 input{

   box-sizing: border-box;

   padding: 0 25px;

   background: #eef3f5;

   border-radius: 8px;

   width: 100%;

   height: 100%;

   border: 0;

   outline: 0;

   font-size: 14px;

 }

 #content .active{

   background-color: #09f;

   color: #fff;

 }

 .primary-button{

   background: linear-gradient(325deg,#4aa4ff,#1058fa);

   width: 100%;

   height: 42px;

   border-radius: 23px;

   border: 0;

   outline: none;

   color: #fff;

   letter-spacing: 10px;

   font-weight: 500;

   font-size: 16px;

   cursor: pointer;

   margin-top: 30px;

 }

 .pic{

   width: 200px;

   height: 200px;

   margin: 0 auto;

 }

 .pic img{

   width: 100%;

   height: 100%;

 }


```


2.页面结构


```html

<!-- 定义登录组件 -->

 <template id="example1">

   <div>

    <!-- 唯一的根容器 -->

    <div class="form-input">

      <input type="text" name="user" placeholder="请输入手机号/邮箱" class="form-input">

    </div>

    <div class="form-input">

        <input type="password" name="psd" placeholder="请输入密码" class="form-input">

    </div>

    <button type="button" class="primary-button"><span>登录</span></button>

   </div>

  </template>

  <!-- 二维码登录 -->

  <template id="example2">

    <div class="pic">

      <img src="./erweima.png">

    </div>

  </template>

  <div id="content">

    <div class="title">

      <a href="javascript:;" @click="compontentName = 'example1',cur=0" :class="{active:cur == 0}">账号登录</a>

      <a href="javascript:;" @click="compontentName = 'example2',cur=1" :class="{active:cur == 1}">二维码登录</a>

    </div>

    <transition enter-active-class="animated bounceInDown">

      <component :is="compontentName"></component>

    </transition>

  </div>


```

3.Javascript


```html

   Vue.component('example1',{template:'#example1'})

   Vue.component('example2',{template:'#example2'})

   var vm = new Vue({

     el: '#content',

     data: {

       compontentName :'example1',

       cur:0

       }

   });


```


全代码:


```html

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <meta http-equiv="X-UA-Compatible" content="IE=edge">

   <meta name="viewport" content="width=device-width, initial-scale=1.0">

   <title>登录</title>

   <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>

   <link href="https://cdn.jsdelivr.net/npm/animate.css@3.5.1" rel="stylesheet" type="text/css">

<style>

 #content{

   width: 400px;;

   margin: 60px auto;

 }

 .title{

   height: 50px;

   border-bottom: 1px solid #e1e7ec;

   text-align: center;

 }

 #content a{

   text-decoration: none;

   color: black;

   font-size: 16px;

   background: #f1f1f1;

   padding: 5px 10px;

   margin: 0 10px;

   border-radius: 5px;

 }

 .form-input{

   height: 46px;

   line-height: 46px;

   margin-top: 10px;;

 }

 input{

   box-sizing: border-box;

   padding: 0 25px;

   background: #eef3f5;

   border-radius: 8px;

   width: 100%;

   height: 100%;

   border: 0;

   outline: 0;

   font-size: 14px;

 }

 #content .active{

   background-color: #09f;

   color: #fff;

 }

 .primary-button{

   background: linear-gradient(325deg,#4aa4ff,#1058fa);

   width: 100%;

   height: 42px;

   border-radius: 23px;

   border: 0;

   outline: none;

   color: #fff;

   letter-spacing: 10px;

   font-weight: 500;

   font-size: 16px;

   cursor: pointer;

   margin-top: 30px;

 }

 .pic{

   width: 200px;

   height: 200px;

   margin: 0 auto;

 }

 .pic img{

   width: 100%;

   height: 100%;

 }

</style>

</head>

<body>

   <!-- 定义登录组件 -->

 <template id="example1">

   <div>

    <!-- 唯一的根容器 -->

    <div class="form-input">

      <input type="text" name="user" placeholder="请输入手机号/邮箱" class="form-input">

    </div>

    <div class="form-input">

        <input type="password" name="psd" placeholder="请输入密码" class="form-input">

    </div>

    <button type="button" class="primary-button"><span>登录</span></button>

   </div>

  </template>

  <!-- 二维码登录 -->

  <template id="example2">

    <div class="pic">

      <img src="./erweima.png">

    </div>

  </template>

  <div id="content">

    <div class="title">

      <a href="javascript:;" @click="compontentName = 'example1',cur=0" :class="{active:cur == 0}">账号登录</a>

      <a href="javascript:;" @click="compontentName = 'example2',cur=1" :class="{active:cur == 1}">二维码登录</a>

    </div>

    <transition enter-active-class="animated bounceInDown">

      <component :is="compontentName"></component>

    </transition>

  </div>

  <script>

   Vue.component('example1',{template:'#example1'})

   Vue.component('example2',{template:'#example2'})

   var vm = new Vue({

     el: '#content',

     data: {

       compontentName :'example1',

       cur:0

       }

   });

 </script>  

</body>

</html>


```



屏幕截图 2021-11-05 154647.png屏幕截图 2021-11-05 154700.png

目录
相关文章
|
7天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
8天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
7天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
7天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
JavaScript 测试技术 容器
Vue2+VueRouter2+webpack 构建项目
1). 安装Node环境和npm包管理工具 检测版本 node -v npm -v 图1.png 2). 安装vue-cli(vue脚手架) npm install -g vue-cli --registry=https://registry.
1050 0
|
8天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
8天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
9天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
9天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
14天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发