首页 > 其他分享 >威廉官方登录网址页面完整代码

威廉官方登录网址页面完整代码

时间:2024-04-03 09:33:32浏览次数:29  
标签:威廉 text 100% height 网址 input div class 页面

这篇文章主要给大家介绍了关于VUE登录注册页面的相关资料,在Vue中可以使用组件来构建登录注册页面,文中通过图文以及代码介绍的非常详细,需要的朋友可以参考下

效果图:

Login.vue

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

<template>

    <div class="container">

            <div class="login-wrapper">

                <div class="header">Login</div>

                <div class="form-wrapper">

                    <input type="text" name="username" placeholder="username" class="input-item">

                    <input type="password" name="password" placeholder="password" class="input-item">

                    <div class="btn">Login</div>

                </div>

            </div>

        </div>

</template>

<script>

    export default {

        name:"Login"

    }

</script>

<style scoped>

html {

    height: 100%;

}

body {

    height: 100%;

}

.container {

    /* margin-top: 5%; */

    height: 980px;

    width: 100%;

    background-image: linear-gradient(to right, #fbc2eb, #a6c1ee);

}

.login-wrapper {

    background-color: #fff;

    width: 358px;

    height: 588px;

    border-radius: 15px;

    padding: 0 50px;

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

}

.header {

    font-size: 38px;

    font-weight: bold;

    text-align: center;

    line-height: 200px;

}

.input-item {

    display: block;

    width: 100%;

    margin-bottom: 20px;

    border: 0;

    padding: 10px;

    border-bottom: 1px solid rgb(128, 125, 125);

    font-size: 15px;

    outline: none;

}

.input-item:placeholder {

    text-transform: uppercase;

}

.btn {

    text-align: center;

    padding: 10px;

    margin: 0 auto;

    width: 100%;

    margin-top: 40px;

    background-image: linear-gradient(to right, #a6c1ee, #fbc2eb);

    color: #fff;

}

.msg {

    text-align: center;

    line-height: 88px;

}

a {

    text-decoration-line: none;

    color: #abc1ee;

}

</style>

Register.vue

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

<template>

    <div class="container">

            <div class="login-wrapper">

                <div class="header">Register</div>

                <div class="form-wrapper">

                    <input type="text" name="username" placeholder="账户" class="input-item">

                    <input type="password" name="password" placeholder="密码" class="input-item">

                    <input type="password" name="repassword" placeholder="再次确认密码" class="input-item">

                    <div class="btn">Register</div>

                </div>

            </div>

        </div>

</template>

     

<script>

    export default {

        name:"Reg"

    }

</script>

<style scoped>

html {

    height: 100%;

}

body {

    height: 100%;

}

.container {

    /* margin-top: 5%; */

    height: 980px;

    width: 100%;

    background-image: linear-gradient(to right, #fbc2eb, #a6c1ee);

}

.login-wrapper {

    background-color: #fff;

    width: 358px;

    height: 588px;

    border-radius: 15px;

    padding: 0 50px;

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

}

.header {

    font-size: 38px;

    font-weight: bold;

    text-align: center;

    line-height: 200px;

}

.input-item {

    display: block;

    width: 100%;

    margin-bottom: 20px;

    border: 0;

    padding: 10px;

    border-bottom: 1px solid rgb(128, 125, 125);

    font-size: 15px;

    outline: none;

}

.input-item:placeholder {

    text-transform: uppercase;

}

.btn {

    text-align: center;

    padding: 10px;

    width: 100%;

    margin-top: 40px;

    background-image: linear-gradient(to right, #a6c1ee, #fbc2eb);

    color: #fff;

    margin: 0 auto;

}

.msg {

    text-align: center;

    line-height: 88px;

}

a {

    text-decoration-line: none;

    color: #abc1ee;

}

</style>

由于显示威廉官方登录网址78888.me的分辨率和比例不同,最终展示可能出现位置不对等问题,主要调节<style>中.container的height属性和.login-wrapper的transform:属性

App.vue也奉上:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

<template>

  <div id="app">

      <div class="title">

          <div class="btn" @click="msg='Login'">登录</div>

          <div class="btn" @click="msg='Reg'">注册</div>

      </div>

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

  </div>

</template>

<script>

//这里的from路径根据自己的布局更改路径

import Login from './components/login.vue'

import Reg from './components/register.vue'

export default {

  name: 'App',

  data(){

      return{

          msg:"Login"

      }

  },

  components: {

    Login,

    Reg

  }

}

</script>

<style>

.title{

    text-align: center;

    background-image: linear-gradient(to right, #fbc2eb, #a6c1ee);

}

.btn {  

    background-color: rgb(210,193,326);

    border-radius:28px;

    border:1px solid #ffffff;

    display:inline-block;

    cursor:pointer;

    color:#ffffff;

    font-family:Arial;

    font-size:17px;

    padding:16px 31px;

    text-decoration:none;

    text-shadow:0px 1px 0px #2f6627;

    margin: 10px 20px; 

}

.btn:hover {

    background-color:rgb(180,193,237);

}

.btn:active {

    position:relative;

    top:1px;

}

</style>

总结 

到此这篇关于VUE登录注册页面的文章就介绍到这了,更多相关VUE登录注册页面内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持

标签:威廉,text,100%,height,网址,input,div,class,页面
From: https://blog.csdn.net/yiran0913998/article/details/137328107

相关文章