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

目录
相关文章
|
25天前
|
JavaScript API 开发者
Vue是如何进行组件化的
Vue是如何进行组件化的
|
1天前
|
JavaScript 关系型数据库 MySQL
基于VUE的校园二手交易平台系统设计与实现毕业设计论文模板
基于Vue的校园二手交易平台是一款专为校园用户设计的在线交易系统,提供简洁高效、安全可靠的二手商品买卖环境。平台利用Vue框架的响应式数据绑定和组件化特性,实现用户友好的界面,方便商品浏览、发布与管理。该系统采用Node.js、MySQL及B/S架构,确保稳定性和多功能模块设计,涵盖管理员和用户功能模块,促进物品循环使用,降低开销,提升环保意识,助力绿色校园文化建设。
|
25天前
|
JavaScript 前端开发 开发者
Vue是如何进行组件化的
Vue是如何进行组件化的
|
25天前
|
存储 JavaScript 前端开发
介绍一下Vue的核心功能
介绍一下Vue的核心功能
|
27天前
|
JavaScript 前端开发 开发者
vue 数据驱动视图
总之,Vue 数据驱动视图是一种先进的理念和技术,它为前端开发带来了巨大的便利和优势。通过理解和应用这一特性,开发者能够构建出更加动态、高效、用户体验良好的前端应用。在不断发展的前端领域中,数据驱动视图将继续发挥重要作用,推动着应用界面的不断创新和进化。
|
28天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱前端的大一学生,专注于JavaScript与Vue,正向全栈进发。博客分享Vue学习心得、命令式与声明式编程对比、列表展示及计数器案例等。关注我,持续更新中!🎉🎉🎉
32 1
vue学习第一章
|
28天前
|
JavaScript 前端开发 索引
vue学习第三章
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中的v-bind指令,包括基本使用、动态绑定class及style等,希望能为你的前端学习之路提供帮助。持续关注,更多精彩内容即将呈现!🎉🎉🎉
26 1
vue学习第三章
|
28天前
|
缓存 JavaScript 前端开发
vue学习第四章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中计算属性的基本与复杂使用、setter/getter、与methods的对比及与侦听器的总结。如果你觉得有用,请关注我,将持续更新更多优质内容!🎉🎉🎉
35 1
vue学习第四章
|
28天前
|
JavaScript 前端开发 算法
vue学习第7章(循环)
欢迎来到瑞雨溪的博客,一名热爱JavaScript和Vue的大一学生。本文介绍了Vue中的v-for指令,包括遍历数组和对象、使用key以及数组的响应式方法等内容,并附有综合练习实例。关注我,将持续更新更多优质文章!🎉🎉🎉
24 1
vue学习第7章(循环)
|
28天前
|
JavaScript 前端开发
vue学习第九章(v-model)
欢迎来到我的博客,我是瑞雨溪,一名热爱JavaScript与Vue的大一学生,自学前端2年半,正向全栈进发。此篇介绍v-model在不同表单元素中的应用及修饰符的使用,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
29 1
vue学习第九章(v-model)