直播系統app原始碼,簡潔好看的登入頁面

zhibo系統開發發表於2023-02-01

直播系統app原始碼,簡潔好看的登入頁面

1.html

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>登入介面</title>
    <link rel="stylesheet" href="static/login.css">
</head>
<body>
  <div>
      <div>登入</div>
      <input type="text" placeholder="賬號">
      <input type="password" placeholder="密碼">
      <button>登入</button>
      <span>沒有賬號?<a href="#">去註冊</a> </span>
  </div>
  <div>
      <ul>
          <li></li>
          <li></li>
          <li></li>
          <li></li>
          <li></li>
      </ul>
  </div>
  <div>
      <ul>
          <li></li>
          <li></li>
          <li></li>
          <li></li>
          <li></li>
      </ul>
  </div>
</body>
</html>


2.css

*{
    /*初始化*/
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    /*彈性佈局居中*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*漸變背景*/
    background: linear-gradient(200deg,#e3c5eb,#a9c1ed);
   /*溢位影藏*/
    overflow: hidden;
}
.container{
    /*相對定位*/
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    /*垂直配列*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 500px;
    /*陰影*/
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.container .tit{
    font-size: 26px;
    margin: 65px auto 70px auto;
}
.container input{
    width: 280px;
    height: 30px;
    text-indent: 8px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    margin: 12px auto;
}
.container button{
    width: 280px;
    height: 40px;
    margin: 35px auto 40px auto;
    border: none;
    background: linear-gradient(-200deg,#fac0e7,#aac2ee);
    color: #fff;
    font-weight: bold;
    letter-spacing: 8px;
    border-radius: 10px;
    cursor: pointer;
    /*動畫過渡*/
    transition: 0.5s;
}
.container button:hover{
    background: linear-gradient(-200deg,#aac2ee,#fac0e7);
    background-position-x: -280px;
}
.container span{
    font-size: 14px;
}
.container a{
    color: plum;
    text-decoration: none;
}
ul li{
    position: absolute;
    border: 1px solid #fff;
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    list-style: none;
    opacity: 0;
}
.square li{
    top: 40vh;
    left: 60vw;
    animation: square 10s linear infinite;
}
.square li:nth-child(2){
    top: 80vh;
    left: 10vm;
    /*動畫延時時間*/
    animation-delay: 2s;
}
.square li:nth-child(3){
    top: 80vh;
    left: 85vm;
    /*動畫延時時間*/
    animation-delay: 4s;
}
.square li:nth-child(4){
    top: 10vh;
    left: 70vm;
    /*動畫延時時間*/
    animation-delay: 6s;
}
.square li:nth-child(5){
    top: 10vh;
    left: 10vm;
    /*動畫延時時間*/
    animation-delay: 8s;
}
.circle li{
    bottom: 0;
    left: 15vw;
    animation: circle 10s linear infinite;
}
.circle li:nth-child(2){
    left: 35vw;
    animation-delay: 2s;
}
.circle li:nth-child(3){
    left: 55vw;
    animation-delay: 4s;
}
.circle li:nth-child(4){
    left: 75vw;
    animation-delay: 6s;
}
.circle li:nth-child(5){
    left: 90vw;
    animation-delay: 8s;
}
@keyframes square {
    0%{
       transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    100%{
        transform: scale(0) rotate(1000deg);
        opacity: 0;
    }
}
@keyframes circle{
    0%{
        transform: scale(0) rotate(0deg);
        opacity: 1;
        bottom: 0;
        border-radius: 0;
    }
    100%{
        transform: scale(0) rotate(1000deg);
        opacity: 0;
        bottom: 90vh;
        border-radius: 50%;
    }
}


以上就是 直播系統app原始碼,簡潔好看的登入頁面,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2933576/,如需轉載,請註明出處,否則將追究法律責任。

相關文章