高颜值登录页面(一键复制)

登录页面是每一个项目不可缺少的页面,是一个应用的门面,首次进入看见的可能就是登录界面,做了这么久的前端,发现登录界面其实都大同小异,有时候没必要从头写,我写了几个自认为比较好看的uniapp登录界面记录一下,下次用到的话,可以直接复制过来,修改下就行了。只有静态页面,并未做逻辑上的东西,这样便于在此基础上做调整。

先看效果

高颜值登录页面(一键复制)

实际应用效果

高颜值登录页面(一键复制)

源码

粉色登录界面(图一):

template>
  view class="content">
    view class="loginBox">
      h3>登录h3>
      view class="inputBox">
        view class="ipt">
          uni-icons type="contact" size="24" color="rgb(247,120,172)">uni-icons>
          input type="text" value="" placeholder="请输入账号"/>
        view>
        view class="ipt">
          uni-icons type="eye" size="24" color="rgb(247,120,172)">uni-icons>
          input type="passsword" value="" placeholder="请输入密码"/>
        view>
        view class="forgetPwd">
          span>忘记密码span>
          span>没有账号,去注册span>
        view>
        button>登录button>
      view>
      view class="tipbox">
        view class="txt">
          —— 其他账号登录 ——
        view>
        view class="otherUser">
          uni-icons type="qq" size="40" color="rgb(66,157,250)">uni-icons>
          uni-icons type="weixin" size="40" color="rgb(2,187,17)">uni-icons>
        view>
      view>
    view>
    
    view class="tip">
      某某应用 2024
    view>
  view>
template>

script>
  export default {
    data() {
      return {
        
      }
    },
    onLoad() {

    },
    methods: {

    }
  }
script>

style scoped>
  .content{
    height: 100vh;
    background: url("https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fc-ssl.duitang.com%2Fuploads%2Fitem%2F202005%2F10%2F20200510005139_JR8fL.jpeg&refer=http%3A%2F%2Fc-ssl.duitang.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1714820289&t=e835cde99a094cbd98f9c318f25160ec") no-repeat;
    background-size: 100% 100%;
  }
  .loginBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-60%);
    width: 90%;
    background-color: #fff;
    border-radius: 20rpx;
    padding: 60rpx;
    box-sizing: border-box;
  }
  h3{
    color: rgb(247,120,172);
    font-size: 40rpx;
    letter-spacing: 10rpx;
    margin-bottom: 40rpx;
  }
  .inputBox{
    
  }
  .ipt{
    height: 86rpx;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20rpx;
    background-color: #f5f5f5;
    border-radius: 10rpx;
    padding-left: 10rpx;
  }
  .ipt input{
    margin-left: 20rpx;
    font-size: 28rpx;
  }
  .ipt input{
    margin-left: 20rpx;
  }
  .forgetPwd{
    font-size: 26rpx;
    color: #b5b5b5;
    text-align: end;
    padding:0 10rpx;
    display: flex;
    justify-content: space-between;
  }
  button{
    margin-top: 20rpx;
    line-height: 85rpx;
    text-align: center;
    background: linear-gradient(to right,rgb(255, 170, 127),rgb(247,120,172));
    border-radius: 40rpx;
    color: #fff;
    margin-top: 40rpx;
  }
  
  .tip{
    text-align: center;
    font-size: 28rpx;
    position: fixed;
    bottom: 50rpx;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #f4f4f4;
  }
  .tipbox {
    text-align: center;
    margin-top: 100rpx;
  }
  
  .otherUser {
    margin-top: 30rpx;
    display: flex;
    justify-content: center;
  }
  
  .txt {
    font-size: 28rpx;
    color: #cbcbcb;
  }
  
  .otherUser .uni-icons {
    margin-left: 20rpx;
  }
style>

白色登录界面(图二):

template>
  view class="content">
    svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
      width="100%" height="100%" viewBox="0 0 1600 900" preserveAspectRatio="xMidYMax slice">
      defs>
        linearGradient id="bg">
          stop offset="0%" style="stop-color:rgba(130, 158, 249, 0.06)">stop>
          stop offset="50%" style="stop-color:rgba(76, 190, 255, 0.6)">stop>
          stop offset="100%" style="stop-color:rgba(115, 209, 72, 0.2)">stop>
        linearGradient>
        path id="wave" fill="url(#bg)"
          d="M-363.852,502.589c0,0,236.988-41.997,505.475,0
          s371.981,38.998,575.971,0s293.985-39.278,505.474,5.859s493.475,48.368,716.963-4.995v560.106H-363.852V502.589z"
 />
      defs>
      g>
        use xlink:href='#wave' opacity=".3">
          animateTransform attributeName="transform" attributeType="XML" type="translate" dur="10s"
            calcMode="spline" values="270 230; -334 180; 270 230" keyTimes="0; .5; 1"
            keySplines="0.42, 0, 0.58, 1.0;0.42, 0, 0.58, 1.0" repeatCount="indefinite" />
        use>
        use xlink:href='#wave' opacity=".6">
          animateTransform attributeName="transform" attributeType="XML" type="translate" dur="8s"
            calcMode="spline" values="-270 230;243 220;-270 230" keyTimes="0; .6; 1"
            keySplines="0.42, 0, 0.58, 1.0;0.42, 0, 0.58, 1.0" repeatCount="indefinite" />
        use>
        use xlink:href='#wave' opacty=".9">
          animateTransform attributeName="transform" attributeType="XML" type="translate" dur="6s"
            calcMode="spline" values="0 230;-140 200;0 230" keyTimes="0; .4; 1"
            keySplines="0.42, 0, 0.58, 1.0;0.42, 0, 0.58, 1.0" repeatCount="indefinite" />
        use>
      g>
    svg>
    
    view class="loginBox">
      h3 style="text-align: center;margin-bottom:120rpx;">欢迎登录h3>
      view class="inputBox">
        view class="ipt">
          uni-icons type="contact" size="24" color="rgb(66,157,250)">uni-icons>
          input type="text" value="" placeholder="请输入账号"/>
        view>
        view class="ipt">
          uni-icons type="eye" size="24" color="rgb(66,157,250)">uni-icons>
          input type="passsword" value="" placeholder="请输入密码"/>
        view>
        view class="ipt">
          uni-icons type="checkmarkempty" size="24" color="rgb(66,157,250)">uni-icons>
          input type="text" value="" placeholder="请输入验证码"/>
          view class="yzm">
            验证码
          view>
        view>
        button>登录button>
        view class="forgetPwd">
          span>忘记密码span>
          span>没有账号,去注册span>
        view>
      view>
      view class="tipbox">
        view class="txt">
          —— 其他账号登录 ——
        view>
        view class="otherUser">
          uni-icons type="qq" size="40" color="rgb(66,157,250)">uni-icons>
          uni-icons type="weixin" size="40" color="rgb(2,187,17)">uni-icons>
        view>
      view>
    view>
  view>
template>

script>
  export default {
    data() {
      return {

      }
    },
    methods: {

    }
  }
script>

style scoped>
  svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height:40%;
    box-sizing: border-box;
    display: block;
    background-color: #ffffff;
  }
  
  .loginBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-60%);
    width: 90%;
    border-radius: 20rpx;
    padding: 60rpx;
    box-sizing: border-box;
  }
  h3{
    color:rgb(66,157,250);
    font-size: 40rpx;
    letter-spacing: 10rpx;
    margin-bottom: 40rpx;
  }
  .inputBox{
    
  }
  .ipt{
    height: 86rpx;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40rpx;
    background-color: #f5f5f5;
    border-radius: 10rpx;
    padding-left: 10rpx;
  }
  .ipt input{
    margin-left: 20rpx;
    font-size: 28rpx;
  }
  .ipt input{
    margin-left: 20rpx;
  }
  .forgetPwd{
    margin-top: 30rpx;
    font-size: 26rpx;
    color: #b5b5b5;
    text-align: end;
    padding:0 10rpx;
    display: flex;
    justify-content: space-between;
  }
  button{
    margin-top: 20rpx;
    line-height: 85rpx;
    text-align: center;
    background: rgb(66,157,250);
    border-radius: 40rpx;
    color: #fff;
    margin-top: 40rpx;
  }
  
  .tip{
    text-align: center;
    font-size: 28rpx;
    position: fixed;
    bottom: 50rpx;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #f4f4f4;
  }
  .tipbox {
    text-align: center;
    margin-top: 100rpx;
  }
  
  .otherUser {
    margin-top: 30rpx;
    display: flex;
    justify-content: center;
  }
  
  .txt {
    font-size: 28rpx;
    color: #cbcbcb;
  }
  
  .otherUser .uni-icons {
    margin-left: 20rpx;
  }
  .yzm{
    text-align: end;
    font-size: 24rpx;
    background: linear-gradient(to right,rgb(66,157,250),rgb(0, 170, 127));
    height: 60rpx;
    width: 150rpx;
    line-height: 60rpx;
    text-align: center;
    border-radius: 10rpx;
    color: #fff;
  }
style>

蓝色登录界面(图三):

template>
  view class="content">
    view class="topBox">
      h3>WELCOMEh3>
      h3>欢迎使用某某应用h3>
    view>
    view class="inputBox">
      view class="ipt">
        h4>手机号h4>
        input type="text" value="" placeholder="请输入手机号码" />
      view>
      view class="ipt">
        h4>密码h4>
        input type="text" value="" placeholder="请输入密码" />
      view>
      button class="loginBtn">登录button>
      button class="registerBtn">注册button>

      view class="tipbox">
        view class="txt">
          —— 其他账号登录 ——
        view>
        view class="otherUser">
          uni-icons type="qq" size="40" color="rgb(66,157,250)">uni-icons>
          uni-icons type="weixin" size="40" color="rgb(2,187,17)">uni-icons>
        view>
      view>
    view>
  view>
template>

script>
  export default {
    data() {
      return {

      }
    },
    methods: {

    }
  }
script>

style scoped>
  .content {
    height: 100vh;
    background-color: aquamarine;
    background: url("https://www.galaxyclub.cn/Upload/IMAGES/15/0615/38af439784544e95b7c64cad64a14157_650x650.jpg") no-repeat;
    background-size: cover;
  }

  .topBox {
    font-size: 34rpx;
    color: #fff;
    padding: 80rpx 50rpx;
  }

  h3 {
    margin-bottom: 10rpx;
  }

  .inputBox {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 750rpx;
    height: 85vh;
    background-color: #fff;
    border-top-left-radius: 40rpx;
    border-top-right-radius: 40rpx;
    padding: 60rpx;
    box-sizing: border-box;
  }

  .ipt {
    margin-bottom: 50rpx;
  }

  .ipt h4 {
    margin-bottom: 20rpx;
    font-size: 36rpx;
    color: #333;
  }

  .ipt input {
    border-bottom: 1px solid #dedede;
    padding-bottom: 20rpx;
    font-size: 28rpx;
  }

  .loginBtn {
    margin-top: 20rpx;
    line-height: 85rpx;
    text-align: center;
    background: linear-gradient(to right, rgb(86, 104, 214), rgb(86, 104, 214));
    border-radius: 40rpx;
    color: #fff;
    margin-top: 50rpx;
  }

  .registerBtn {
    margin-top: 20rpx;
    line-height: 85rpx;
    text-align: center;
    border-radius: 40rpx;
    color: rgb(86, 104, 214);
    margin-top: 50rpx;
    border: none;
  }

  .tipbox {
    position: fixed;
    bottom: 120rpx;
    left: 50%;
    transform: translate(-50%, -120px);
  }

  .otherUser {
    margin-top: 30rpx;
    display: flex;
    justify-content: center;
  }

  .txt {
    font-size: 28rpx;
    color: #969696;
  }

  .otherUser .uni-icons {
    margin-left: 20rpx;
  }
style>

背景图片来源网络

如有帮助,求个赞可否高颜值登录页面(一键复制)

网址打包成桌面.exe

2024-03-28

高颜值登录页面(一键复制)


网页毕设源码(王者荣耀)

2024-03-17

高颜值登录页面(一键复制)


把网页打包成app(简单)

2024-01-31

高颜值登录页面(一键复制)


前端CSS魔法

2024-01-28

高颜值登录页面(一键复制)


Vue3优秀的UI组件库(高颜值)

2024-01-19

高颜值登录页面(一键复制)


下载量超高的vscode AI插件

2024-01-14

高颜值登录页面(一键复制)


本内容观点仅代表发布作者本人观点立场,欣文网平台只做信息内容展示和存储。发布作者:全网转载,转转请注明出处:https://www.xinenw.com/4502

(0)
上一篇 2024年4月19日 15:01
下一篇 2024年4月19日 15:01

相关推荐

  • 一周后,终于轮到这顶配碾压全场

    蓝厂最近动作挺多。 昨天刚发布 vivo Y200 系列和 iQOO Neo9s Pro,今天又整了一场 X 系列影像技术沟通会。 看到技术两个字,不用多说,又得秀肌肉了。 既然大家都称之为蓝厂,vivo 干脆也顺着来,把影像方面的技术统称为「蓝图影像」。 技术层面,vivo 会联合研发传感器。 比如说在 vivo 手机用过的传感器中,很多都采用了别家没有的…

    2024年5月22日
    13700
  • 四个被优化的大厂人,卖起了包子

    在社交平台上,大厂离职人或吐槽前东家,或分享离职生活,这些都是常规操作。但在杭州,四名阿里P7级别的员工在被优化之后,没有去找新工作,而是凑在一起开了家包子铺。在阿里,P7通常意味着几十万的年薪、“精英光环”,以及一定的社会地位,而被离职,则往往意味着失去这一切,以及被推着被动去寻找新出路。 在离职后的所有可见出路中,跟同事组团去卖包子,显然是最不容易被想象…

    2024年8月12日
    7300
  • 曾经嫌弃她丑,我真该死啊

    被218万人看过、113万人打出9.1分的《哈尔的移动城堡》,上映二十年后,终于迎来院线重映。   作为宫崎骏亲自盖章过的“最满意的作品之一”,本次上映前,《哈尔的移动城堡》就拿下今年五一档“想看人数”第一,到现在已经斩获了1.54亿票房。     “二十年过去,被宫崎骏感动的还是同一批人。”   同一批人,却品出了不同的滋味,不同于强调“真爱至上”的宣发重…

    2024年5月27日
    12100
  • 啧啧,闲鱼这次的瓜,真的有点大啊

    有人的地方就有江湖。 这就像是有人的地方就会有厕所,因为这是最基本的生理需求。 又或者是有夜店的地方就有旅馆,因为这是最普通的生活规律。 身而为人,天生就有吃饱喝足的权利。 可耐不住极个别人。 在茶余饭后、温饱之余,满脑子就尽装些邪淫之事。 有贼心有贼胆的,自然早已被公之于众,但有贼心没贼胆的,则会把“生意”转移在万能的互联网上,让平台和用户为其背锅。 像最…

    2024年7月27日
    7700
  • 你之所以赚不到钱,是因为这个。

    点击上方🔝“蓝色字”,关注我们哦! 哈喽,大家好啊,桃子来啦! 最近在持续读书,其中一本《纳瓦尔宝典》感触颇深。 最令我深刻的一句话是: 『如果你内心鄙视财富,财富就会对你避而远之,自然就赚不到钱了。』 这是赚不到钱的本质。 这本书很适合想了解商业和初创的人看,也适合想搞钱的所有人看,提高财商。书中很多关于财富的idea都非常有启迪,我挑选了一些分享给大家,…

    2024年7月21日
    8200

发表回复

登录后才能评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件A:xinenw@qq.com

邮箱B:xinenw@163.com

工作时间:周一至周五,8:30-23:30;周六周日10:30-18:30;节假日休息

关注微信
欣文网内容建设升级中,欢迎您参与意见征集进行评论,只为打造更好的内容平台!