1、掌握CSS3中border-radius的用法
#問題:
實現以下介面效果,(不要求實現搜尋功能),要求不使用任何框架,純div css3,同時必須使用border-radius知識點
#其他說明:
1、整個寬度是800x,要求居中顯示
2、logo圖片以寬300px,居中顯示
3、搜尋框width=500px,高度總共是50px
#想法分析:
1、該頁面分成上下2部分,上面是一張Logo,下面是負責搜尋的功能
2、下面搜尋功能的組成部分從左到右依序是,一個帶圓角的輸入框,一個照相機小圖標,最右邊是一個帶圓角的按鈕
具體程式碼實現如下:
1、我們先把素材準備好,一個百度Logo圖片,和一個相機小圖示,然後我們把他們放到images目錄中,方便管理
##2 、先寫好div架構<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>模拟百度搜索</title> </head> <body> <div class="container"> <!-- 上面部分:logo图片 --> <div class="logo"> </div> <!-- 下面部分:搜索功能 --> <div class="search"> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>模拟百度搜索</title> </head> <body> <div class="container"> <!-- 上面部分:logo图片 --> <div class="logo"> <img src="images/CSS3圓角邊框實作百度首頁搜尋介面效果-案例解析(程式碼實例 )"/ alt="CSS3圓角邊框實作百度首頁搜尋介面效果-案例解析(程式碼實例 )" > </div> <!-- 下面部分:搜索功能 --> <div class="search"> <input type="text" class="txtInput" /> <img src="images/cam.png" class="camIcon" / alt="CSS3圓角邊框實作百度首頁搜尋介面效果-案例解析(程式碼實例 )" > <input type="button" class="btnSearch" value="百度一下"/> </div> </div> </body> </html>
,然後裡面的內容要居中(text-align: center),為了防止一些元素有預設的padding或margin所以統一設定成0(padding :0,margin:0),然後我們要求這個容器也要居中,所以寫成margin:0 auto
.container{ width:800px; padding:0; border:1px solid lightgray; text-align: center; margin:0 auto; }
/* 最外层容器 */ .container{ width:800px; padding:0; border:1px solid lightgray; text-align: center; margin:0 auto; } /* LOGO样式 */ .logo{ width:300px; margin: 0 auto; } .logo img{ width:100%; }
/* 最外层容器 */ .container{ width:800px; padding:0; border:1px solid lightgray; text-align: center; margin:0 auto; } /* LOGO样式 */ .logo{ width:300px; margin: 0 auto; } .logo img{ width:100%; } /* 搜索部分样式 */ .search{ height:50px; } .txtInput{ width:500px; height: 46px; border:2px solid rgb(70,98,217); border-radius: 10px 0 0 10px; padding:0; }
##1、它的寬度我們就設定成30px即可,即width:30px
2、搜尋按鈕width:100px,高度100%,它也是有圓角,只是右上和右下,然後他的圓角大小要和文字輸入框的一樣也是10px,背景顏色,也是藍色rgb(70,98,217),文字顏色是白色,字體大小我們設定成15px,padding我們也設定成0
所以現在的index.css程式碼如下:
/* 最外层容器 */ .container{ width:800px; padding:0; border:1px solid lightgray; text-align: center; margin:0 auto; } /* LOGO样式 */ .logo{ width:300px; margin: 0 auto; } .logo img{ width:100%; } /* 搜索部分样式 */ .search{ height:50px; } .txtInput{ width:500px; height: 46px; border:2px solid rgb(70,98,217); border-radius: 10px 0 0 10px; padding:0; } .camIcon{ width:30px; } /* 搜索按钮 */ .btnSearch{ width:100px; height: 100%; border:2px solid rgb(70,98,217); background-color:rgb(70,98,217); border-radius: 0 10px 10px 0; color:white; font-size:15px; padding:0; }
接下來為了看到效果,我們把樣式引入index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>模拟百度搜索</title> <link href="css/index.css" rel="stylesheet" /> </head> <body> <div class="container"> <!-- 上面部分:logo图片 --> <div class="logo"> <img src="images/CSS3圓角邊框實作百度首頁搜尋介面效果-案例解析(程式碼實例 )"/ alt="CSS3圓角邊框實作百度首頁搜尋介面效果-案例解析(程式碼實例 )" > </div> <!-- 下面部分:搜索功能 --> <div class="search"> <input type="text" class="txtInput" /> <img src="images/cam.png" class="camIcon" / alt="CSS3圓角邊框實作百度首頁搜尋介面效果-案例解析(程式碼實例 )" > <input type="button" class="btnSearch" value="百度一下"/> </div> </div> </body> </html>
運行效果如下:
可以看出,效果基本上差不多了,接下來,我們要做的修改是
1、我們要讓照相機按鈕左移,然後高度也要位於文字方塊中間(這一步,自己去計算,根據圖片的寬度,高度,結合文字框的寬度,高度,可以推算出來)
2、照相机左移过去后,要保证按钮要和文本框贴合的恰当
好继续修改index.css 中的照相机图标样式,添加margin-left,margin-top
.camIcon{ width:30px; margin-left:-40px; margin-top:11px; }
运行结果如下:
我们会发现,其实文本输入框的高度和按钮的高度都是50px,但是还是无法位于同一水平线,怎么做呢?
我们可以通过float的方式解决这个问题,所以接下来我们让文本输入框,照相机图标,还有按钮都float:left
css代码如下:
/* 最外层容器 */ .container{ width:800px; padding:0; border:1px solid lightgray; text-align: center; margin:0 auto; } /* LOGO样式 */ .logo{ width:300px; margin: 0 auto; } .logo img{ width:100%; } /* 搜索部分样式 */ .search{ height:50px; } .txtInput{ width:500px; height: 46px; border:2px solid rgb(70,98,217); border-radius: 10px 0 0 10px; padding:0; /* 解决输入框和按钮位于同一水平线 */ float: left; } .camIcon{ width:30px; margin-left:-40px; margin-top:11px; float: left; /* 解决输入框和按钮位于同一水平线 */ } /* 搜索按钮 */ .btnSearch{ width:100px; height: 100%; border:2px solid rgb(70,98,217); background-color:rgb(70,98,217); border-radius: 0 10px 10px 0; color:white; font-size:15px; padding:0; /* 解决输入框和按钮位于同一水平线 */ float: left; }
运行效果如下:
我们发现现在就符合我们的效果了,位于同一水平线了,但是下面的部分不居中了,那么根据下面的总共宽度是600(文本输入框500+按钮宽度100),那么还剩下800-600=200,所以margin-left:100即可
再次修改index.css中.txtInput
.txtInput{ width:500px; height: 46px; border:2px solid rgb(70,98,217); border-radius: 10px 0 0 10px; padding:0; /* 解决输入框和按钮位于同一水平线 */ float: left; margin-left: 100px;/*让文本输入框居中**/ }
好再次运行结果如下:
根据灰色边框我们可以看出确实是居中了,接下来,去除最外层的边框即可,去除index.css中的最外层容器的border即可
.container{ width:800px; padding:0; /* border:1px solid lightgray; */ text-align: center; margin:0 auto; }
再来运行效果如下:
好,到此为止,我们就实现了所有要求的效果!!!
1、掌握了CSS3中圆角边框的实现
2、可以通过float实现文本输入框和按钮水平平齐
希望本文能给大家带来一定的帮助,谢谢!!!
以上是CSS3圓角邊框實作百度首頁搜尋介面效果-案例解析(程式碼實例 )的詳細內容。更多資訊請關注PHP中文網其他相關文章!