Blogger Information
Blog 8
fans 0
comment 0
visits 5142
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
网站布局与JS基础七月九号
珍珠宝宝的博客
Original
505 people have browsed it

关于我们

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="static/css/header.css">
    <link rel="stylesheet" href="static/css/footer.css">
    <link rel="stylesheet" href="static/css/about.css">
    <title>关于我们</title>
</head>
<body>
<!-- 头部 -->
<div class="header">
    <div class="content">
        <ul class="nav">
            <li class="item"><a href="index.html">首页</a></li>
            <li class="item"><a href="news.html">公司新闻</a></li>
            <li class="item"><a href="products.html">最新产品</a></li>
            <li class="item"><a href="about.html">关于我们</a></li>
            <li class="item"><a href="contact.html">联系我们</a></li>
        </ul>
    </div>
</div>

<!-- 中间主体 -->
<div class="container">
    <!--   banner图-->
 <div class="banner">
        <img src="static/images/banner.jpg" alt="">
    </div>

    <!-- 1. 中间内容区块 -->
 <div class="wrap">
        <div class="main">

            <div class="about">
                <div class="box">
                <h3>关于我们</h3>
                <img src="static/images/gsjs.jpg" alt="" width="100%">
                <p>
                    我公司生产的显示器, 不能当饭吃, 也不能当衣服穿, 并且全部都是方的, 只要通上电, 就可以使用了
                    每一台显示器, 都带了一根电源线, 还有一根信号线, 出厂的时候, 没有配插线板, 需要
                    用户自己***一下, 实在是不好意思了, 毕竟9块9就包邮了(***PDD商城哟)
                </p>
                </div>
                <div class="pages">
                    <ul>
                        <li><a href="">上一页</a></li>
                        <li><a href="" class="active">1</a></li>
                        <li><a href="">2</a></li>
                        <li><a href="">3</a></li>
                        <li><a href="">4</a></li>
                        <li><a href="">5</a></li>
                        <li><a href="">下一页</a></li>
                    </ul>
                </div>
            </div>

        </div>
    </div>

    <!-- 2. 左侧分为上下二 -->
 <div class="left">
        <h3>栏目</h3>
        <div class="category">
            <ul>
                <li><a href="">公司新闻</a></li>
                <li><a href="">最新产品</a></li>
                <li><a href="">关于我们</a></li>
                <li><a href="">联系我们</a></li>
            </ul>
        </div>

    </div>


</div>

<!-- 底部 -->
<div class="footer">
    <div class="content">
        <p>
            <a href="">&copy; PHP中文网版权所有</a> &nbsp;|&nbsp;
 <a href="">0551-88889999</a> &nbsp;|&nbsp;
 <a href="">皖ICP2016098801-1</a>
        </p>

    </div>
</div>
</body>
</html>

about.css

.container {
    width: 1000px;

    margin: 5px auto;
    /* 参考色块: 整个主体容器是灰色背景 */
    /*background-color: lightgray;*/

    /*包住浮动的子元素*/
    overflow: hidden;
}

.wrap {

    width: inherit;

    min-height: 800px;
    /*参考背景色*/
    /*background-color: cyan;*/
}


/* 左边栏样式 */
.left {
    width: 280px;
    min-height: 800px;
    /*background-color: lightcoral;*/
}
/* 右边栏样式 */
.right {
    width: 280px;
    min-height: 800px;
    /*background-color: lightseagreen*/
}



.wrap, .left, .right {
    float: left;
}


.left {

    margin-left: -100%;
}
/*.right {*/

/*    margin-left: -280px;*/
/*}*/

.main {
    padding-left: 280px;
    /*padding-right: 280px;*/

    /*添加主体边框*/
    /*border: 1px solid #444444;*/
}

.main .about {
    /*加到中间div上不会撑大盒子的*/
    padding: 0 15px;
}

.main .box {
    min-height: 800px;
}

.main h3 {
    margin: 10px auto;
    text-align: center;
    border-bottom: 1px solid;
}

.main ul {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    overflow: hidden;
}

/*分页条样式*/
.main .about  .pages{
    margin: 15px auto;

}

.mani .about .pages ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main .about .pages ul li a {
    float: left;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    min-width: 26px;
    padding: 0 5px;
    border: 1px solid black;
    text-align: center;
    margin: 0 2px;
}


/*鼠标移入与激活时的样式*/
.main .about .pages ul li a:hover,
.main .about .pages ul li a.active{
    background-color: red;
    color: white;
}


/*左侧样式*/
.left h3 {
    margin: 10px auto;
    text-align: center;
    border-bottom: 1px solid;
}

.left ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.left li a {
    display: inline-block;
    width: 100%;
    height: 50px;
    background-color: black;
    color: white;
    text-decoration-line: none;
    line-height: 50px;
    text-align: center;
}

.left li a:hover {
    background-color: red;
    font-size: 1.1em;
}

js基本语法案例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>JS基本语法</title>
</head>
<body>
<script>
    function sum(a,b) {
        var  c=a*b+x ;
        return c;
    }
    var x=5
 var y=6
 console.log(sum(x,y));

    // 单分支
 var grade = 500;
    var res ='';

    if (grade>=400){
        res ='超过本科线了';
    }
    console.log(res);

    // 双分支
 var grade =300;
    var res ='';

    if (grade>=400){
        res ='恭喜,您超过本科线了';
    } else {
        res ='对不起,您未过本科线';
    }
    console.log(res);

    // 双分支简化:三元运算符
 var grade =500;
    var res ='';
    res = grade >=400 ? '恭喜,您超过本科线了': '对不起,您未过本科线';
    // 结果之间要用英式冒号隔开
 console.log(res);

    // 多分支
 var grade =175;
    var res ='';

    if (grade>=400){
        res ='恭喜,您超过本科线了';
    } else if (grade>=180){
        res ='恭喜,您超过专科线了'
 }
    else {
        res ='对不起,您未过专科线';
    }
    console.log(res);

    // 用switch简化代码
 var grade =580
 switch (true) {
        case grade<180:
            res ='对不起,您未过专科线';
        case grade>=180 && grade <400 :
            res ='恭喜,您超过专科线了';
        case grade >=400 && grade <500 :
            res ='恭喜,您超过二本线了';
            break;
        default:
            res ='恭喜,你超过一本线了'
}
    console.log(res);

    // 循环
    // for循环
 var sum = 0;
    for (var i = 1; i <=8; i++) {
        console.log(sum + '+' + i + '=' + (sum + i));
        sum =sum+ i;
    }
    console.log('累加结果:'+sum);

    // for循环
 var sum = 0;
    for (var i = 0; i < 10; i++) {
        console.log('循环体执行了'+ (i+1) + '次');
        sum =sum+ i;
    }
    console.log('累加结果:'+sum);

    // 判断循环:出口判断

 var sum=0;
    var i=1;
    while (i<=8){
        console.log(sum + '+' + i + '=' + (sum + i));
        sum =sum+ i;
        i++
    }
    console.log('累加结果:'+sum);
    // 入口判断
 var sum=0;
    var i=1;
    do {
        console.log(sum + '+' + i + '=' + (sum + i));
        sum =sum+ i;
        i++
        } while (i<=8)
    console.log('累加结果:'+sum);

// break/continue语句
    // break`: 跳出循环,执行循环后面的语句
 for (var i = 1; i <=8; i++) {
        if (i===6)break
 console.log(i);
    }
    // continue`: 提前结束本次循环,进入下一次循环
 for (var i = 1; i <=8; i++) {
        if (i===6)continue
 console.log(i);
    }

</script>

</body>
</html>


Correction status:qualified

Teacher's comments:赶紧补上来
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post