QQ登錄界面是眾所周知的一個簡潔而注重細節的登錄界面,其中主要的設計日志就是CSS的應用。下面介紹一下如何使用CSS制作QQ登錄界面。
/* 設置頁面布局樣式 */ body { background: #fdfdfd; } .container { width: 320px; height: 420px; margin: 10% auto; border: 1px solid #ccc; border-radius: 5px; background: white; box-shadow: rgba(0,0,0,.1) 0 0 8px; overflow: hidden; } /* 設置頭部登錄樣式 */ .header { width: 100%; height: 70px; background: #f5f5f5; text-align: center; border-bottom: 1px solid #ddd; } .header h1 { font-size: 24px; color: #3d3d3d; margin-top: 20px; } /* 設置表單樣式 */ .form-wrap { width: 70%; margin: 80px auto 0; } .form-wrap label { display: none; } .input-item { position: relative; margin-bottom: 15px; } .icon { position: absolute; font-size: 18px; color: #ccc; top: 14px; left: 10px; } .input-item input { width: 100%; height: 40px; padding-left: 40px; border: 1px solid #ddd; font-size: 16px; outline: none; } .input-item input:focus { border-color: #39b1ea; } /* 設置底部登錄按鈕樣式 */ .btn { width: 60%; height: 50px; line-height: 50px; margin: 0 auto; margin-top: 30px; text-align: center; color: white; background: #39b1ea; border-radius: 3px; cursor: pointer; } .btn:hover { background: #0075c9; }
以上是關于如何使用CSS制作QQ登錄界面的代碼,這個方法不僅在制作QQ登錄界面上有重要應用價值,而且運用在登錄頁面的設計上也是非常實用的。對于初學者來說,這個項目還有一些細節問題需要掌握,例如:如何設置圖標的位置、樣式和hover狀態等等,希望大家在學習的過程中多花些時間去琢磨,最終達到了熟練掌握的水平。
上一篇MySQL數據庫技術黃翔
下一篇css如何做出虛線