自检:前端知识清单——手写布局

前言

题目来自ConardLi的blog
写的是自己的题解,水平有限,所以仅供参考
代码会整合在github,觉得有帮助就给个star吧~

正文

二、HTML和CSS

手写

1.手写图片瀑布流效果

通过css multi-column去实现多列布局实现瀑布流

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }

        body {
            background: #eaedf1;
        }

        #myModal {
            display: none;
            position: fixed;
            left: 0;
            top: 0;
            width: 100vw;
            height: 100vh;
            opacity: 0;
        }

        #bg {
            display: none;
            position: fixed;
            left: 30%;
            top: 10%;
            width: 40vw;
            height: 80vh;
            justify-content: center;
            align-items: center;
        }

        #img {
            height: 100%;
            object-fit: contain;
            animation-name: zoom;
            animation-duration: 0.6s;
        }

        .root {
            margin: 0 auto;
            width: 1200px;
            column-count: 4;
            column-gap: 20px;
            padding-bottom: 20px;
        }

        .item {
            margin-bottom: 10px;
            break-inside: avoid;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
        }

        .item:hover {
            box-shadow: 2px 2px 2px rgba(71, 70, 70, 0.5);
            opacity: 0.8;
        }

        .itemImg {
            width: 100%;
            vertical-align: middle;
            cursor: pointer;
        }

        @keyframes zoom {
            from {
                transform: scale(0)
            }

            to {
                transform: scale(1)
            }
        }

        @media screen and (min-width:700px) and (max-width: 1024px) {
            .root {
                width: 700px;
                column-count: 3;
            }

            #img {
                max-width: 100%;
                max-height: 100%;
            }

            #bg {
                left: 20%;
                width: 60vw;
            }
        }

        @media screen and (min-width:420px) and (max-width: 700px) {
            .root {
                width: 400px;
                column-count: 2;
            }

            #img {
                max-width: 100%;
                max-height: 100%;
            }

            #bg {
                left: 15%;
                width: 70vw;
            }
        }

        @media screen and (max-width: 420px) {
            .root {
                width: 250px;
                column-count: 1;
            }

            #img {
                width: 100%;
                height: 100%;
                object-fit: fill;
            }

            #bg {
                left: 10%;
                width: 80vw;
            }
        }
    </style>
</head>

<body>
    <div class="root">
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img1.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img2.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img3.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img4.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img5.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img6.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img7.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img8.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img9.jpg" alt="">
        </div>
        <div class="item">
            <img onclick="spread(this)" class="itemImg" src="./img10.jpg" alt="">
        </div>
    </div>
    <div id="myModal">
    </div>
    <div id="bg">
        <img id="img">
    </div>
    <script>
        const modal = document.getElementById('myModal')
        const img = document.getElementById('img')
        const bg = document.getElementById('bg')

        const spread = function (e) {
            modal.style.display = 'block'
            bg.style.display = 'flex'
            img.src = e.src
        }
        modal.onclick = function () {
            modal.style.display = 'none'
            bg.style.display = 'none'
        }
    </script>
</body>

</html>

效果图:


2、使用CSS绘制几何图形(圆形、三角形、扇形、菱形等)

圆形:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .circle {
            border-radius: 50%;
            width: 200px;
            height: 200px;
            background: red;
        }
    </style>
</head>

<body>
    <div class="circle">

    </div>
</body>


</html>

三角形:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .triangle {
            width: 0;
            height: 0;
            border: transparent 100px solid;
            border-bottom-color: red;
        }
    </style>
</head>

<body>
    <div class="triangle">

    </div>
</body>

</html>

扇形:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .triangle {
            width: 0;
            height: 0;
            border: transparent 100px solid;
            border-bottom-color: red;
            border-bottom-left-radius: 50%;
            border-bottom-right-radius: 50%;
        }
    </style>
</head>

<body>
    <div class="triangle">

    </div>
</body>

</html>

菱形:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .square {
            width: 100px;
            height: 100px;
            clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
            background: red
        }
    </style>
</head>

<body>
    <div class="square">

    </div>
</body>

</html>

3、使用纯CSS实现曲线运动(贝塞尔曲线)

暂时不会,待更新

4、实现常用布局(三栏、圣杯、双飞翼、吸顶),可是说出多种方式并理解其优缺点

三栏布局:

  • float方案
    html:
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .main {
            height: 100vh;
        }

        * {
            margin: 0;
            padding: 0;
        }

        .left-wrap {
            float: left;
            width: 200px;
            height: 100vh;
            background: #1ba1e2
        }

        .right-wrap {
            float: right;
            width: 200px;
            height: 100vh;
            background: #1ba1e2
        }

        .center-wrap {
            width: 100%;
            height: 100vh;
        }
    </style>
</head>

<body>
    <div class="main">
        <div class="left-wrap"></div>
        <div class="right-wrap"></div>
        <div class="center-wrap">
            This is the center
        </div>
    </div>
</body>

</html>
  • position方案
    html:
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .main {
            height: 100vh
        }

        .left {
            position: absolute;
            top: 0;
            left: 0;
            width: 200px;
            background: #1ba1e2;
            height: 100vh;
        }

        .right {
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            background: #1ba1e2;
            height: 100vh;
        }

        .main {
            margin: 0 200px;
            height: 100vh
        }
    </style>
</head>

<body>
    <div class="main">
        <div class="left"></div>
        <div class="right"></div>
        <div class="center">this is a center</div>
    </div>
    <script>

    </script>
</body>

</html>
  • flex方案
    html:
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .main {
            display: flex;
        }

        * {
            padding: 0;
            margin: 0;
        }

        .left {
            width: 200px;
            background: #1ba1e2;
            height: 100vh;
        }

        .center {
            flex: 1;
            height: 100vh;
        }

        .right {
            width: 200px;
            order: 1;
            background: #1ba1e2;
            height: 100vh;
        }
    </style>
</head>

<body>
    <div class="main">
        <div class="left"></div>
        <div class="center"></div>
        <div class="right"></div>
    </div>
</body>

</html>
  • grid方案
    html:
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .container {
            position: relative;
            display: grid;
            grid-template-columns: 200px auto 200px;
            grid-template-rows: 100%;
            grid-template-areas: "lt cr rt"
        }

        * {
            margin: 0;
            padding: 0;
        }

        div {
            height: 100vh
        }

        .center-wrap {
            grid-area: cr;
        }

        .left-wrap {
            grid-area: lt;
            background: #1ba1e2;
        }

        .right-wrap {
            grid-area: rt;
            background: #1ba1e2;
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="left-wrap"></div>
        <div class="center-wrap"></div>
        <div class="right-wrap"></div>
    </div>
</body>

</html>
  • table方案:
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        html,
        body {
            width: 100%;
            height: 100%;

        }

        table {
            width: 100%;
            height: 100%;
            text-align: center;
            font-size: 30px;

        }

        table tr td {
            border-width: 0;
        }
    </style>
    <title>Document</title>
</head>

<body>
    <table>
        <tbody>
            <tr height='100%''>
                <td width = ' 200' bgcolor="#1ba1e2">

                </td>
                <td>
                    this is center
                </td>
                <td width='200' bgcolor="#1ba1e2">

                </td>
            </tr>
        </tbody>
    </table>
</body>

</html>

圣杯布局:暂时不会
双飞翼布局:暂时不会
吸顶布局:暂时不会

5、实现等比宽高的div

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容