【问题标题】:div fullscreen (width & height) html/css?div全屏(宽度和高度)html/css?
【发布时间】:2015-10-15 07:27:15
【问题描述】:

我是 html/css 方面的新手,所以让我们开始吧。

即使您调整浏览器大小或使用智能手机/平板电脑打开网站,我也想创建一个全屏(宽度和高度)的网站。我有 2 个 div(让我们说“顶部”和“底部”),我只想要获得全屏宽度和高度的“顶部”。

<html>
<head></head
<body>

<div class="top">
    <div>content 1</div>
    <div>content 2</div>
    <div>content 3</div>
</div>

<div class="bottom">
    <div>another content</div>
    <div>another content</div>
    <div>another content</div>
    <div>another content</div>
</div>
</body>
</html>

或类似http://scripteden.com/previews/Clean/的东西

对不起我的英语不好..

【问题讨论】:

    标签: javascript jquery html css fullscreen


    【解决方案1】:

    使用swiper,工作代码:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Swiper demo</title>
        <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
    
        <!-- Link Swiper's CSS -->
        <link rel="stylesheet" href="http://www.idangero.us/swiper/dist/css/swiper.min.css">
    
        <!-- Demo styles -->
        <style>
        html, body {
            position: relative;
            height: 100%;
        }
        body {
            background: #eee;
            font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
            font-size: 14px;
            color:#000;
            margin: 0;
            padding: 0;
        }
        .swiper-container {
            width: 100%;
            height: 100%;
        }
        .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            /* Center slide text vertically */
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
        }
    
        .swiper-slide{
            display: block;
        }
        .top>div{
            display: block;
        }
    
        </style>
    </head>
    <body>
        <!-- Swiper -->
        <div class="swiper-container">
            <div class="swiper-wrapper">
                <div class="swiper-slide top">
                    <div>content 1</div>
                    <div>content 2</div>
                    <div>content 3</div>
                </div>
                <div class="swiper-slide bottom">
                    <div>another content</div>
                    <div>another content</div>
                    <div>another content</div>
                    <div>another content</div>
                </div>
            </div>
            <!-- Add Pagination -->
            <div class="swiper-pagination"></div>
        </div>
    
        <!-- Swiper JS -->
        <script src="http://www.idangero.us/swiper/dist/js/swiper.min.js"></script>
    
        <!-- Initialize Swiper -->
        <script>
        var swiper = new Swiper('.swiper-container', {
            pagination: '.swiper-pagination',
            paginationClickable: true,
            direction: 'vertical',
            setWrapperSize:true     // this will set slide wrap div full screen, and you can override flex layout
        });
        </script>
    </body>
    </html>
    

    这里的提琴手:(http://jsfiddle.net/futurist/dztabt3v/)

    更新 1

    如果你只想在手机/平板上使用,不想支持旧浏览器,可以使用添加flex-direction: column/row;.swiper-slide保持内部div垂直/水平对齐,并设置setWrapperSize:false以获得更好的性能.

    这里的提琴手:(http://jsfiddle.net/futurist/nbvr1uLb/1)

    更新 2

    如果要在底部滚动,只需在底部设置一个容器 div,并给出 CSS:overflow:scroll;

    这里的提琴手:(http://jsfiddle.net/futurist/nbvr1uLb/2/)

    【讨论】:

    • 爱它!但我还有 1 个问题,因为“底部”中有很多东西,需要滚动查看内容,我可以使用鼠标滚动查看其余内容吗?
    • 抱歉回复晚了,让我自己陷入了工作中。这很好:D 还有一个问题,我可以将点更改为导航栏吗?
    【解决方案2】:

    不确定您将支持哪些浏览器,但一种适用于 ie10 及更高版本的简单方法是

    body {
      width: 100vw;
      height:100vh
    }
    

    例如:https://css-tricks.com/viewport-sized-typography/

    【讨论】:

    • 主要是chrome和mozilla,但后来我会去ie,因为我正在使用wp
    • 上述方法你试过了吗?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2010-10-09
    • 2021-10-02
    • 1970-01-01
    • 2017-11-30
    • 2017-06-17
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多