執行個體詳解HTML、CSS動態背景登入頁面的實現

來源:互聯網
上載者:User
登入頁面有一個背景,會大大增加人們的視覺享受,但是登入頁面除了靜態頁面還有動態網頁面登入,本文主要介紹了HTML+CSS實現動態背景登入頁面的相關資料,需要的朋友可以參考下,希望能協助到大家。

1. 實現背景圖片的動態變換

首先在HTML頁面body板塊中,添加圖片p,代碼如下:

<body><p class="bgk"><p class="bgk-image" style="background-image: url('${pageContext.request.contextPath}/img/1.jpg')"></p><p class="bgk-image" style="background-image: url('${pageContext.request.contextPath}/img/2.jpg')"></p><p class="bgk-image" style="background-image: url('${pageContext.request.contextPath}/img/3.jpg')"></p><p class="bgk-image" style="background-image: url('${pageContext.request.contextPath}/img/4.jpg')"></p></body>

再對圖片進行css設計。你要對圖片進行大小定位,那麼以下代碼肯定要首先編寫:

`.bgk {margin: auto;position: absolute;width: 1366px;height: 672px;overflow: hidden;   /*溢出部分隱藏*/}`

位置設定ok以後,那麼再對裡面的圖片進行設定。為了使圖片能足夠大覆蓋頁面,則代碼必須有 background-size: cover;

要實現動態效果,那麼你的css代碼中必須有動畫的設計:

-webkit-animation-name: kenburns;       /*-animation-name:為@keyframes 動畫規定名稱,必須與-animation-duration同時使用,否則無動畫效果*/animation-name: kenburns;               /*或者:後面值為需要綁定到選取器上的keyframe名稱*/-webkit-animation-duration: 16s;    /*定義動畫完成一個周期所需時間*/animation-duration: 16s;-webkit-animation-timing-function: linear;  /*規定動畫從頭到尾以相同速度播放,還有其他幾個速度值*/animation-timing-function: linear;-webkit-animation-iteration-count: infinite;    /*規定動畫播放次數,infinite為無限次*/animation-iteration-count: infinite;-webkit-transform: scale(1.2);      /*規定動畫的縮放特效,scale:規定2D縮放*/transform: scale(1.2);-webkit-filter: blur(10px);       /*定義圖片的模糊程度,顯示為毛半透明效果*/filter: blur(10px);

在綁定每個子項目選取器,有幾張圖片就綁定幾個選取器:

.bgk-image:nth-child(1) {-webkit-animation-name: kenburns-1;       /*選取器上的名稱*/animation-name: kenburns-1;z-index: 3;         /*動畫堆疊順序,值越大表示越先播放,離使用者越近*/}.bgk-image:nth-child(2) {-webkit-animation-name: kenburns-2;animation-name: kenburns-2;z-index: 2;}.bgk-image:nth-child(3) {-webkit-animation-name: kenburns-3;animation-name: kenburns-3;z-index: 1;}.bgk-image:nth-child(4) {-webkit-animation-name: kenburns-4;animation-name: kenburns-4;z-index: 0;}

建立好選取器以後,你就可以預覽你的動態背景圖片變換了

2. 對登入表單的設計

在之前HTML頁面中繼續添加一個表單

<p class="form_login_p">    <form  class="form_login" action="" method="post">        <label class="login_title">登入您的賬戶</label>        <label class="username">使用者名稱</label><input class="input_username" id="input_username" type="text" name="username" placeholder="郵箱/手機號"/>        <label class="password">密&nbsp;碼</label><input class="input_password" id="input_password" type="password" name="password" placeholder="請輸入密碼"/>        <input type="submit" value="登入"/><br/>    </form></p>

添加完表單之後,就要進行表單的樣式設計。首先你得對錶單規定一個圈子,限制它的寬度和高度

.form_login{    margin: auto;    width:700px;    height: 480px;    top: 90px;    left: 333px;    position: absolute;    border-radius: 15px;    background: rgba(216,216,216,0.5);      /*設定form表單透明度*/    text-align: center;    overflow: hidden;}

然後對錶單裡面的各個label進行定位和樣式設計,這裡可以自由設計。

對輸入框的設計,我只貼出主要樣式代碼

outline:none;       /*outline (輪廓)是繪製於元素周圍的一條線,位於邊框邊緣的外圍,可起到突出元素的作用。*/border:1px solid rgba(0,0,0,.49);       /*輸入框邊框的大小,實線,rgba(red,green,blue,a為透明度),透明度處於0-1之間*/-webkit-background-clip: padding-box;   /*background-clip 規定背景的繪製地區,padding-box為內容被裁減到內邊距框*/background-clip: padding-box;background:rgba(216,216,216,0.4) ;border-radius:6px;      /*對輸入框進行圓角*/padding:7px;       /*輸入框中游標位置*/

當聚焦輸入框的時候,可以增加一點絢麗色彩

.form_login input[type="text"]:focus,input[type="password"]:focus{    -webkit-transition:border linear .2s,-webkit-box-shadow linear .5s;     /*對邊框顏色的逐步過渡高亮顯示,後面是對陰影的逐步過渡*/    border-color:rgba(255,128,0,.75);}

最後進行提交按鈕的設計

text-shadow:0px -1px 0px #5b6ddc;       /*文字陰影設定*/outline:none;border:1px solid rgba(0,0,0,0.49);       /*按鈕邊框顏色與透明度設定*/-webkit-background-clip: padding-box;   /*規定內容的繪製地區,padding-box為內邊框距*/background-clip: padding-box;border-radius:6px;cursor:pointer;     /*游標形狀,pointer為一隻手的形狀*/background-color:#768ee4;       /*按鈕背景顏色*/

當滑鼠放在提交按鈕上面時,你可以適當進行一些動畫效果設計

.form_login input[type="submit"]:hover{    background-color:#5f73e9;    background-image:-webkit-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);    background-image:-moz-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);    background-image:-ms-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);    background-image:-o-linear-gradient(bottom,#5f73e9 0%,#859bef 100%);    -webkit-box-shadow: inset 0px 1px 0px #aab9f4;      /*當滑鼠放在按鈕上個時邊框的陰影*/    box-shadow: inset 0px 1px 0px #aab9f4;    margin-top:22px;}

最後整個設計完成,你可以看見你最終的效果了

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.