欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

CSS網(wǎng)頁(yè)設(shè)計(jì)實(shí)例:網(wǎng)頁(yè)登陸表單實(shí)例

2017-02-26    分類: 網(wǎng)站建設(shè)

W3cplus從今天剛開推出藤藤練習(xí)的CSS3系列。出這個(gè)系列主要是為了讓同樣有著CSS3興趣的同學(xué)更有動(dòng)力,在這個(gè)系列中都是由W3cplus美女成員藤藤每天根據(jù)國(guó)外搜集的有關(guān)psd設(shè)計(jì)圖,然后將設(shè)計(jì)圖通過css3的代碼轉(zhuǎn)換成DEMO案例。一是為了自己提高,二是與其他有同樣愛好的同學(xué)一起分享。如果你喜歡,那就持續(xù)關(guān)注w3cplus的有關(guān)更新。

這個(gè)案例主要制作的是一個(gè)登錄表單,在這個(gè)案例中使用了box-shadow、gradient,transform和transition等屬性,其中最難的地方是輸入框被咬的那部分,原本使用純CSS3的漸變配合多背景制作,但受限于陰影,最終改變使用base的64位圖像處理。詳細(xì)的參考代碼吧:

HTML 結(jié)構(gòu):

<div class="box">
<form action="#" method="get">
<ul>
<li>
<label for="username">Email:</label><input type="text" id="username" class="username" placeholder="john.smith@strategysoft.com"/>
</li>
<li>
<label for="password">Password:</label><input type="password" id="password" class="password" placeholder="******"/>
</li>
</ul>
<a href="javascript:;" class="button"/><i class="icon-arrow-right"></i></a>
</form>
</div>

CSS代碼:

body,ul{


margin: 0;
padding: 0
}
a {
color: rgb(1, 124, 185);
text-decoration: none;
}
input:focus {
outline: none 0;
}
body{
color: #b5b5b5;
font: 14px "Arial"
}
body,
li:first-child:after,
li:last-child:after{
background-image: url(data:image/png;base64,...);/**/
}
.box{
position: relative;
width: 384px;
height: 140px;
margin: 50px auto;
}
.box li{
list-style-type: none;
margin-bottom: 10px;
border-radius: 5px;
overflow: hidden;
position: relative;
height: 42px;
}
.box li input{
box-shadow:inset 0 0 5px rgba(0,0,0,.5),-1px 1px 0 rgba(255,255,255,.05);
border:0 none;
padding:8px 5px 5px;
border-radius: 5px;
width:300px;
height: 28px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
-o-box-sizing: content-box;
-ms-box-sizing: content-box;
box-sizing: content-box;
background: rgba(0,0,0,.1);
color: #fff;
}

.box li:first-child:after,
.box li:last-child:after{
position: absolute;
width: 50px;
height: 50px;
content: ""
border-radius: 25px;
z-index: 2;
right: -23px;
box-shadow: 0 0 8px rgba(0,0,0,.5);
}
::-webkit-input-placeholder {
color:#fff;
font-weight: bold;
}
.box li:first-child:after{
top: 15px;
}
.box li:last-child:after{
bottom:15px;
}
.box label{
width: 70px;
display: inline-block;
text-align: right;
}
.box span{
display: block;
color: #6296b4;
padding-left: 75px;
}
.button{
position: absolute;
top: 24px;
right: -30px;
width: 44px;
height: 44px;
border-radius: 22px;
border:1px solid #00a1d2;
background: -webkit-linear-gradient(top,#029ecd,#0d7796);
color: #fff;
text-shadow:1px 1px 0 #666;
box-shadow:0 0 0 5px #2c2c2c;
z-index: 3;
text-align: center;
line-height: 46px;
-webkit-transition: all 0.28s ease-in;
-moz--transition: all 0.28s ease-in;
}
.button:hover{
-webkit-transform:rotate(90deg);
}
@font-face {
font-family: "FontAwesome"
src: url("font/fontawesome-webfont.eot");
src: url("font/fontawesome-webfont.eot?#iefix") format("embedded-opentype"),
url("font/fontawesome-webfont.woff") format("woff"),
url("font/fontawesome-webfont.ttf") format("truetype"),
url("font/fontawesome-webfont.svg#FontAwesome") format("svg");
font-weight: normal;
font-style: normal;
}
.icon-arrow-right:before {
font-family: FontAwesome;
font-weight: normal;
font-size: 26px;
font-style: normal;
display: inline-block;
text-decoration: inherit;
content: "\f061"

文章題目:CSS網(wǎng)頁(yè)設(shè)計(jì)實(shí)例:網(wǎng)頁(yè)登陸表單實(shí)例
網(wǎng)頁(yè)鏈接:http://chinadenli.net/news48/74398.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營(yíng)銷、App設(shè)計(jì)、移動(dòng)網(wǎng)站建設(shè)、企業(yè)建站、網(wǎng)站改版、面包屑導(dǎo)航

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設(shè)
91福利视频日本免费看看| 亚洲国产黄色精品在线观看| 夫妻性生活真人动作视频| 亚洲高清一区二区高清| 少妇高潮呻吟浪语91| 欧美日韩亚洲巨色人妻| 国产肥妇一区二区熟女精品| 欧美日韩亚洲精品在线观看| 色婷婷视频免费在线观看| 日本高清视频在线播放| 日本不卡片一区二区三区| 一本久道久久综合中文字幕| 最近日韩在线免费黄片| 91精品视频免费播放| 果冻传媒精选麻豆白晶晶 | 暴力三级a特黄在线观看| 久久精品国产一区久久久| 大伊香蕉一区二区三区| 五月的丁香婷婷综合网| 免费在线观看欧美喷水黄片| 国产性情片一区二区三区| 深夜视频成人在线观看| 在线免费国产一区二区三区 | 久久精品免费视看国产成人| 日本人妻中出在线观看| 亚洲乱码av中文一区二区三区| 亚洲最新中文字幕在线视频| 免费精品国产日韩热久久| 五月天丁香婷婷一区二区| 日本亚洲欧美男人的天堂| 日韩aa一区二区三区| 久久精品伊人一区二区| 99香蕉精品视频国产版| 日韩人妻一区二区欧美| 亚洲国产欧美久久精品| 久久精品伊人一区二区| 国产一区二区久久综合| 日韩人妻一区中文字幕| 好吊妞视频只有这里有精品| 国产精品流白浆无遮挡| 1024你懂的在线视频|