使用CSS3 製做一個material-design 風格登陸界面

心血來潮,想學學 material design 的設計風格,就嘗試完成了一個登陸頁面製做.
這是總體效果.
javascript

感受還不錯吧,結尾會附上代碼css

在編寫的過程當中,沒有使用任何圖片或者字體圖標,所有使用css3完成,仍是遇到一些難點和bug,因此想筆記下來,之後方便查閱.html

響應式設計

在這個頁面中,使用下面3點來完成響應式設計java

  • 最大寬度 .設定了一個 max-width 的最大寬度,以便在大屏幕時兼容.
  • margin : 20px auto; 使其保持時刻居中
  • 組件使用像素

關於響應式的設計要點還有不少。css3

總體頁面佈局

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles/style.css">
</head>

<body>
    <div class="container">
        <div class="logo">
            <div class="logo-block-top">
            </div>
            <div class="logo-block-bottom">
            </div>
        </div>
        <h4 class="login-header">用戶登陸</h4>
        <div class="content">
            <div class="form-group">
                <input type="text" required class="form-control">
                <label class="form-label">用戶名</label>
            </div>
            <div class="form-group">
                <input type="text" required class="form-control">
                <label class="form-label">密 碼</label>
            </div>
            <div class="option">
                <div class="option-left"><a href="">忘記密碼</a></div>
                <div class="option-right">
                    <span class="md-checkbox" checked="checked"></span>
                    <label class="form-label">記住密碼</label>
                </div>
            </div>
        </div>
        <button class="login-button">
            <span class="icon-login"></span>
        </button>
    </div>
</body>
<script src="./app.js type=" text/javascript "></script>

</html>

CSS 開始

給 body 添加樣式git

html {
    font-family: "Microsoft YaHei", 宋ä½「, "Segoe UI", "Lucida Grande", Helvetica, Arial, sans-serif, FreeSans, Arimo;
    background-color: #FF4081;
    color: #777;
}

版心github

.container{
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 45px 20px;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    box-sizing: border-box;
}

注意,這裏調整內部邊距使用了padding 而不是對子元素使用margin,由於若是要使用margin,爲了BFC 的效果,就須要加上 overflow: hidden. 這樣就會對尾部按鈕溢出產生影響.web

頭部logochrome

.container>.logo {
    height: 150px;
    width: 150px;
    position: relative;
    background-color: #EFEFEF;
    border-radius: 75px;
    margin: 0 auto;
}

設置 border-radius 爲 width和height的通常,就會使其成爲一個圓
bootstrap

下面須要一個顏色更深的半圓
如何繪製一個半圓?

.container>.logo::after {
    content: ' ';
    height: 150px;
    width: 75px;
    position: absolute;
    background-color: #E1E1E1;
    border-radius: 0 75px 75px 0;
    left: 75px;
    top: 0;
}

設置寬度爲高度的通常,而後設置左上角和左下角圓角爲0,右邊爲75px

製做鎖,分爲兩部分,lock-top 和 lock -bottom

.container>.logo>.logo-block-top {
    box-sizing: border-box;
    height: 45px;
    width: 54px;
    border: 10px solid #F57C00;
    border-bottom: 0;
    position: absolute;
    border-radius: 27px 27px 0 0;
    left: 48px;
    z-index: 1001;
    top: 20px;
}

一樣是設置圓角

.container>.logo>.logo-block-bottom {
    position: absolute;
    height: 60px;
    width: 80px;
    box-sizing: border-box;
    background-color: #FFA000;
    z-index: 1001;
    top: 65px;
    left: 35px;
    border-radius: 7px;
}

!

設置鑰匙心,這個也分爲兩部分,上面的圓孔和和下面的橢圓
恰好能夠設置在 lock-bottom 的 before和after僞元素上面

.container>.logo>.logo-block-bottom::before {
    content: " ";
    position: absolute;
    height: 12px;
    width: 12px;
    background-color: #EFEFEF;
    border-radius: 5px;
    top: 22px;
    left: 34px;
    box-sizing: border-box;
}
.container>.logo>.logo-block-bottom::after {
    content: " ";
    position: absolute;
    height: 12px;
    width: 6px;
    background-color: #EFEFEF;
    border-radius: 2px;
    top: 30px;
    left: 37px;
    box-sizing: border-box;
}

到這裏 logo 就完成了

下面是 ' 用戶登陸 ' 標題.
注意,這裏最好使用margin 而不是padding,不要破壞原有h4 標籤.

.container>.login-header {
    text-align: center;
    font-size: 23px;
    color: #FF4081;
    font-weight: 400;
    margin: 15px 0 18px 0;
}

爲內容添加一個容器

.container>.content {
    width: 90%;
    margin: 0 auto;
}

添加一個 form-group,包含 label和input 標籤,設置相對佈局

.container>.content>.form-group {
    position: relative;
}

下面就是核心部分,爲input 設置樣式(這裏會產生一個bug,在結尾會介紹)

.container>.content>.form-group>.form-control {
    z-index: 3;
    position: relative;
    height: 58px;
    width: 100%;
    border: 0px;
    border-bottom: 1px solid #777;
    padding-top: 22px;
    color: #FF4081;
    font-size: 12px;
    background: none;
    box-sizing: border-box;
    outline: none;
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

labe 標籤,使用絕對定位,將其放置到Input的上面.

.container>.content>.form-group>.form-label {
    z-index: 1;
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

爲兩個form group 設置必定的間距,不然下面會擋住上面設置的 box-shadow

.container>.content>.form-group>:first-child {
    margin-bottom: 5px;
}

添加動態效果

.container>.content>.form-group>.form-control:focus,
.container>.content>.form-group>.form-control:valid {
    box-shadow: 0 1px #FF4081;
    border-color: #FF4081;
}

.container>.content>.form-group>.form-control:focus+.form-label,
.container>.content>.form-group>.form-control:valid+.form-label {
    font-size: 12px;
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-25px);
}

下面就到了底部option ,也分爲兩部分,option-left 和 option-right

.container>.content>.option {
    width: 100%;
    height: 14px;
    margin-top: 24px;
    font-size: 16px;
}

.container>.content>.option>.option-left {
    width: 50%;
    float: left;
}

.container>.content>.option>.option-left>a,
.container>.content>.option>.option-left>a:hover {
    color: #FF4081;
    text-decoration: none;
}

在option-right 中,要注意 這個複選框並非原生的Input,而是使用div 旋轉而得,由於原生的checkbox沒法更改樣式.

.container>.content>.option>.option-right {
    width: 50%;
    float: right;
    text-align: right;
    position: relative;
}

.container>.content>.option>.option-right>.md-checkbox {
    height: 18px;
    width: 18px;
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    background-color: #FF4081;
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 68px;
}

.container>.content>.option>.option-right>.md-checkbox[checked]:after {
    content: " ";
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    height: 8px;
    width: 15px;
    box-sizing: border-box;
    position: absolute;
    transform: rotate(-45deg);
    top: 3px;
    left: 2px;
}

這裏使用css3 中的旋轉,而模仿一個選中效果
注意: 雖然div沒法直接選中,但仍是能夠爲其添加一個checkd屬性, 這個屬性是一個特殊的css 事件效果,能夠經過js來控制.

最後,登陸按鈕.
這裏,也必須使用絕對定位,參照點是bottom和right

.container>.login-button {
    position: absolute;
    height: 60px;
    width: 60px;
    border: 0px;
    outline: 0px;
    background-color: #FF4081;
    border-radius: 30px;
    right: -30px;
    bottom: 91px;
    box-shadow: 2px 0 0 rgba(0, 0, 0, 0.3) inset;
}

經過 box-shadow: 2px 0 0 rgba(0, 0, 0, 0.3) inset; 這句話能夠知道一個內嵌效果.
中間的按鈕在不適用字體圖標的狀況下也必需要用div 旋轉來模仿了

.container>.login-button >.icon-login {
    box-sizing: border-box;
    position: relative;
    width: 18px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
    display: block;
    margin: auto;
}

.container>.login-button >.icon-login::after {
    content: ' ';
    box-sizing: border-box;
    position: absolute;
    left: 8px;
    height: 12px;
    width: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    top: -4px;
}

最後是鼠標hover上的放大和陰影效果

.container>.login-button:hover {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3) inset, 0 3px 6px rgba(0, 0, 0, 0.16), 0 5px 11px rgba(0, 0, 0, 0.23)
}

.container>.login-button:hover>.icon-login {
    -ms-transform: scale(1.2);
    =webkit-transform: scale(1.2);
    transform: scale(1.2);
}

至此,全部的css已經結束了,查看效果

transition bug修復

當我刷新頁面或者點擊忘記密碼的時候,input框就會抖動一下,這個問題只會出如今chrome 瀏覽器上,firefox 或者edge都不會重現,因此我才這應該是兼容性的問題。
在不斷嘗試中,我發現,只有取消 transition屬性,就不會產生抖動。

這個問題困擾了我3天,真實百思不得其姐。
在某度中查詢半天,未果 。
後來終於在 StackOverFlow 中,搜索chrome input transition 時,終於一個回到讓我貌似頓開。

this bug has been reported, adding an script tag somewhere can advoid it.

以後,我在頁面尾部添加一個下面節點,終於順利解決。

<script src="./app.js type=" text/javascript "></script>

在閱讀過一些文章以後,總結爲

當chrome 的input 默認屬性向自定義過分時,由於存在transition,因此會產生抖動。
而基本上全部的頁面都有script標籤,因此這個bug 幾乎很難被重現。
而我遇到,算是運氣好吧。。

至此,這個頁面所有內容已經完成。
material-design 很贊,angular-material 是使用 AngularJS 封裝了 material-design 的UI 庫,很漂亮。不一樣於 bootstrap的徹底扁平化風格,它採用的是盒子堆砌效果,動畫效果也比較贊。
在下面的一段時間,想着重研究研究這個UI庫。
其實國內的妹子UI 也挺棒,github 上面的star 也不少,可是由於bootstrap太優秀,把它直接蓋過了。

代碼託管至github:https://github.com/apawn/HFLib/tree/master/HFLib/login-page

相關文章
相關標籤/搜索