九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
HTML連載86-添加視頻、伸縮布局

一、復(fù)習(xí)了伸縮布局

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>Title</title>

    <link rel="stylesheet" href="CSS/base.css">

    <link rel="stylesheet" href="CSS/index.css">

</head>

<body>

<!--頂部區(qū)域-->

<div class="top">

    <div class="top_in">

        <div class="top_left">

            <h1><a href="#" title="努比亞"></a></h1><!--a標(biāo)簽里面的title屬性,就是用于當(dāng)鼠標(biāo)放到a標(biāo)簽上面的時(shí)候會(huì)顯示的文字-->

        </div>

        <div class="top_right">

            <ul class="top_nav">

                <li><a href="#">首頁</a></li>

                <li><a href="#">商城</a></li>

                <li><a href="#">產(chǎn)品</a></li>

                <li><a href="#">應(yīng)用</a></li>

                <li><a href="#">服務(wù)</a></li>

                <li><a href="#">體驗(yàn)店</a></li>

                <li><a href="#">社區(qū)</a></li>

?

            </ul>

            <ul class="top_login">

                <!--這里有一個(gè)注意點(diǎn),我們想要使用的右浮動(dòng),所以三個(gè)li標(biāo)簽應(yīng)該倒敘寫,因?yàn)橄葘懙南雀?dòng)哦-->

                <li><a href="#">注冊(cè)</a></li>

                <li><a href="#">登錄</a></li>

                <li><a href="#"></a></li>

            </ul>

        </div>

    </div>

</div>

<!--廣告區(qū)域-->

<div class="banner">

    <div class="nav_out">

        <div class="nav">

            <ul>

                <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li>

                <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li>

                <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li>

                <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li>

                <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li>

                <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li>

                <li><a href="#"><img src="image/nav-phone1.png" alt=""></a></li>

            </ul>

        </div>

    </div>

    <div class="figure">

        <img src="image/banner.png" alt="">

        <ol>

            <li></li>

            <li></li>

            <li></li>

            <li></li>

            <li></li>

        </ol>

    </div>

    <div class="video">

        <ul>

            <li>

                <img src="image/video1.png" alt="">

                <div class="video_info">

                    <img src="" alt="">

                    <h3>Z11黑金版本</h3>

                    <p>產(chǎn)品視頻</p>

                </div>

            </li>

            <li><img src="image/video2.png" alt=""></li>

            <li><img src="image/video3.png" alt=""></li>

        </ul>

    </div>

</div>

<!--內(nèi)容區(qū)域-->

<div class="content"></div>

<!--底部區(qū)域-->

<div class="footer"></div>

</body>

</html>

 

/*頂部區(qū)域*/

.top{

    height:60px;

    width:100%;/*也就是和父元素一樣寬,這里使用百分比的形式,使得網(wǎng)頁擴(kuò)大減小都不會(huì)變形*/

    background-color: black;

?

}

.top .top_in{

    width: 1200px;

    margin:0 auto;

    height:100%;

    /*background-color: yellow;*/

}

.top  .top_left{

    float:left;

    height:100%;

    width:190px;

    /*background-color: pink;*/

}

.top .top_left>h1{

    width: 100%;

    height: 100%;

?

}

.top .top_left>h1>a{

    display: inline-block;

    width: 100%;

    height: 100%;

    background:url("../image/nubia_logo.png");

    background-size: 190px 60px;/*設(shè)置圖片大小正好適配div塊的大小*/

}

.top .top_right{

    float:right;

    height: 100%;

    width: 800px;

    /*background-color: pink;*/

}

.top .top_nav{

    float:left;

    width:550px;

    height: 100%;

    /*background-color: skyblue;*/

?

?

}

.top .top_nav>li{

    float:left;

    list-style: none;

}

.top .top_nav>li>a{

    font-size:25px;

    font-weight: bold;/*給文字加粗*/

    line-height:60px;

    color:white;/*文字的顏色,直接是color*/

    margin-left:20px;/*這是給文字添加空隙*/

    text-decoration:none;/*去掉文字的下劃線*/

}

/*.top .top_nav>li>a:hover{!*移動(dòng)鼠標(biāo)上去變化顏色*!*/

    /*color:#e82c07;*/

/*}*/

.top .top_login{

    float:right;

    width: 150px;

    height: 100%;

    /*background-color: skyblue;*/

}

.top .top_login>li{

    list-style: none;

    float:right;

    margin-right:10px;

}

.top .top_login>li>a{

    font-size:20px;

    font-weight:bold;

    line-height:60px;

    color:white;

?

    text-decoration:none;

}

.top ul>li>a:hover{/*移動(dòng)鼠標(biāo)上去變化顏色*/

    color:#e82c07;

    /*這里我們使用.top ,top_login>li>a:hover而使用了ul來替代top_login這個(gè)可以說是代碼的重構(gòu),我們希望

    li標(biāo)簽里的文字鼠標(biāo)懸浮都變色,這樣我們把父層級(jí)一改,可以省略代碼,在后續(xù)編程中這些都是隱形的小技巧

     */

}

.top .top_login>li:nth-child(3){

    width: 30px;

    height: 37px;

    background:url("../image/nubia_person.png");

    margin-top:10px;

}

?

/*廣告區(qū)域*/

.banner{

    height: 800px;

    width: 100%;

    /*background-color: green;*/

}

/*內(nèi)容區(qū)域*/

.content{

    height: 1883px;

    width: 100%;

    /*background-color: blue;*/

}

.banner .nav_out{

    background-color: white;

    height: 157px;

    width: 100%;

}

?

.banner .nav{

    width: 1200px;

    height: 157px;

    /*margin:0 auto;*//*這里我們想要居中這個(gè)模塊,但是我們把定位流變成了絕對(duì)定位,所以就不管用了*/

    /*background:pink;*/

    position:absolute;/*只所所以改成絕對(duì)定位流,就是想要讓這個(gè)盒子脫標(biāo),這樣就可以讓nav這個(gè)盒子懸浮在下個(gè)盒子上面*/

    left:50%;/*通過這種方式來進(jìn)行居中盒子,靠左邊的一邊,然后利用一半的寬度-600px進(jìn)行回退*/

    margin-left:-600px;

    background:white;

}

.banner .nav>ul{

    width:100%;

    height:100%;

    /*background:yellow;*/

    padding-left: 75px;

    padding-right:75px;

    box-sizing:border-box;/*上面使用了內(nèi)邊距,這里是為了不讓大盒子變形*/

}

.banner .nav>ul>li{

    width: 150px;

    height:100%;

    /*background:purple;*/

    float:left;/*之所以變成浮動(dòng)流,是因?yàn)閘i會(huì)獨(dú)占一行,這樣會(huì)占有七行,浮動(dòng)流可以使它水平排版了*/

    /*border:1px solid black;*/

    box-sizing:border-box;/*為了就是不用因?yàn)檫吙蚨沟煤凶幼兇笞冃?/span>*/

    list-style: none;

}

.banner .nav>ul>li:hover{

    border-bottom:3px red solid;

    box-sizing:border-box;

}

.banner .nac>ul>li image{

    width:150px;

    height:157px;

}

.banner .figure{

    width: 100%;

    height: 600px;

    /*background:red;*/

    overflow:hidden:/*隱藏圖片的滾動(dòng)條*/

    position:relative;

}

.banner .figure>img{

    /*margin:0 auto;這個(gè)語法沒有效果,對(duì)其父元素使用text-align:center;也是沒有用的,因?yàn)閳D片太大了,解決方式如下:*/

    /*如果圖片的寬度大于了父元素的寬度,不可能使用margin:0 auto;或者text-align:center;來使圖片居中*/

    /*如果圖片的寬度大于父元素的寬度,可以使用定位流,來使得圖片居中,但是定位流的弊端也是比較明顯*/

    /*弊端:1.需要寫三行代碼;2.必須知道圖片的寬度;*/

    /*還有一種方法:margin:0 -100%; 注意點(diǎn):父元素必須設(shè)置text-align:center;*/

    width:1200px;

    position:absolute;

    margin-left:540px;

    /*如果圖片太長(zhǎng)而多了一個(gè)滾動(dòng)條,那么可以在父元素的CSS代碼中添加overflow屬性*/

}

.banner .figure>ol{

    width: 150px;

    height: 20px;

    /*background:red;*/

    position:absolute;/*子絕父相*/

    left:50%;

    margin-left:-75px;

    bottom:300px

}

.banner .figure>ol>li{

    float:left;

    width: 8px;

    height: 8px;

    background:red;

    margin-left:15px;

    border-radius:50%;

    border:2px solid transparent;/*transparent代表的是透明色,當(dāng)然你也可以用rgba來顯示透明色*/

    transition: all 1s;

    list-style: none;

 }

.banner .figure>ol>li:hover{

    border:2px solid black;

    background: transparent;

    transform:scale(2,2);/*放大兩倍*/

}

.banner .video{

    width: 1200px;

    height: 250px;

    margin: 0 auto;

    margin-top: 10px;

    /*background:skyblue;*/

}

.banner .video>ul{

    width: 100%;

    height: 100%;

    /*background:yellow;*/

    /*display:flex;!*這是伸縮布局*!*/

    /*justify-content: space-between;!*這個(gè)語句代表著所有的li標(biāo)簽?zāi)軌蛩戒侀_*!*/

?

}

.banner .video>ul>li{

    width: 396px;

    height: 250px;

    /*background:deepskyblue;*/

    float:left;/*換成左漂浮,迅速就占領(lǐng)了黃色的全域,這是因?yàn)橐粋€(gè)挨著一個(gè)排版了,原來是每一行進(jìn)行排版*/

    list-style:none;

    margin-right:4px;/*這一行可以換成伸縮布局來進(jìn)行代替,方法如上一個(gè)標(biāo)簽樣式*/

    overflow:hidden;

    position:relative;

?

}

.banner .video>ul>li>img{

    width: 396px;

    height: 250px;

}

.banner .video .video_info{

    position:absolute;

    width: 100%;

    height: 155px;

    bottom:0;

    opacity:1;/*作用:設(shè)置元素的透明度   特點(diǎn):子元素也是跟著透明*/

?

?

}

.banner .video .video_info>h3{

    font-size: 16px;

    color:black;

    line-height:40px;

    text-align: center;

?

}

.banner .video .video_info>p{

    color:black;

?

}

.banner .video >ul>li:hover  .video_info{

    opacity:1;

?

}

/*底部區(qū)域*/

.footer{

?

?

?

}

二、源碼:

1.項(xiàng)目:Nubia

地址:

https://github.com/ruigege66/HTML_learning/tree/master/Nubia

2.CSDN:https://blog.csdn.net/weixin_44630050

3.博客園:https://www.cnblogs.com/ruigege0000/

4.歡迎關(guān)注微信公眾號(hào):傅里葉變換,個(gè)人賬號(hào),僅用于技術(shù)交流,后臺(tái)回復(fù)“禮包”獲取Java大數(shù)據(jù)學(xué)習(xí)視頻禮包

 

 

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
nav代碼舉例
第十天 div+css網(wǎng)頁標(biāo)準(zhǔn)布局實(shí)例教程(二)
css
用純css實(shí)現(xiàn)下拉菜單的幾種方式
最最簡(jiǎn)單的菜單代碼
CSS 菜單舉一反三
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服