直播系統app原始碼,簡潔好看的登入頁面
直播系統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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 直播系統app原始碼,Android studio 實現app登入註冊頁面APP原始碼Android
- app直播原始碼,平臺登入頁面實現和修改密碼頁面實現APP原始碼密碼
- 直播app系統原始碼,簡單的登入介面(登入、註冊、記住密碼等按鍵)APP原始碼密碼
- 直播原始碼網站,新使用者登入時的註冊頁面和登入頁面原始碼網站
- 直播系統原始碼,啟動APP時判斷登入狀態,引導頁、登入頁、首頁的跳轉方式原始碼APP
- 直播app原始碼,系統首頁或任意頁面下拉自動重新整理APP原始碼
- app直播原始碼,登入時輸入驗證碼、簡訊驗證身份APP原始碼
- 直播app系統原始碼,flutter 驗證碼輸入框的簡單封裝APP原始碼Flutter封裝
- 簡單的網頁登入頁面網頁
- 好看的404頁面html原始碼 網站404原始碼分享HTML原始碼網站
- 影片直播系統原始碼,uniapp 中設定全域性頁面背景色原始碼APP
- 直播app系統原始碼,簡單易上手的進度條APP原始碼
- app直播原始碼,軟體登入時的背景圖更改APP原始碼
- 直播 App 原始碼搭建簡易直播平臺及個人開發直播系統的難點APP原始碼
- 視訊直播系統原始碼,react-hooks的頁面設定定時器原始碼ReactHook定時器
- 直播系統原始碼,自動登入及記住密碼實現原始碼密碼
- 教育直播APP原始碼開發系統APP原始碼
- 影片直播原始碼,AndroidStudio登入頁面的切換原始碼Android
- 直播APP原始碼,直播系統推流SDK(Android)APP原始碼Android
- 直播app原始碼,使用者首次登入時彈出左右滑動導航頁APP原始碼
- 短視訊直播原始碼,遊客模式下使用正常功能跳轉到登入頁面原始碼模式
- 好看的404頁面html帶導航 好看的404頁面htmlHTML
- 直播app系統原始碼,使用者登入後選擇記住密碼,下次自動填充密碼APP原始碼密碼
- 直播系統app原始碼,元素水平垂直居中APP原始碼
- 找靠譜商家直播系統原始碼app!原始碼APP
- 成品直播原始碼推薦,登入和註冊兩個頁面的簡單實現原始碼
- 線上直播系統原始碼,實現翻頁載入、下拉滾動載入原始碼
- python_Django簡單的登入頁面PythonDjango
- app直播原始碼,彈出層 加遮罩層 頁面禁止滑動APP原始碼遮罩
- 直播系統中網頁類似app頁面切換動畫的實現方式網頁APP動畫
- 直播系統app原始碼,shiro簡單的密碼加鹽與密碼驗證APP原始碼密碼
- SAPGUI系統登入頁面配置的SAProuter有什麼用GUI
- app直播系統原始碼,點選生成條形碼APP原始碼
- 影片直播原始碼,uniapp頁面跳轉的幾種方法和區別原始碼APP
- 直播原始碼,zabbix忘記登入密碼原始碼密碼
- 直播app原始碼,登入時自動輸入密碼/自動記住密碼APP原始碼密碼
- 線上直播系統原始碼,簡單實現Android應用的啟動頁原始碼Android
- 直播系統開發行業的先行者——網頁直播原始碼行業網頁原始碼