码迷,mamicode.com
首页 > Web开发 > 详细

一个简单的全屏图片上下打开显示网页效果

时间:2014-07-08 15:38:44      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   http   width   os   cti   html   

打包下载地址:http://download.csdn.net/detail/sweetsuzyhyf/7602105

上源码看效果:

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style>
        body {
            margin: 0;
            padding: 0;
        }


        .wrap {
            overflow: hidden;
            position: fixed;
            z-index: 99999;
            width: 100%;
            top: 0;
            left: 0;
        }


        .div {
            overflow: hidden;
            position: absolute;
            width: 100%;
        }


        .d {
            background: url(1.jpg) center center no-repeat;
            height: 100%;
        }
    </style>
</head>
<body>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <p>这是网站内容</p>
    <div class="wrap">
        <div id="d1" class="div">
            <div class="d"></div>
        </div>
        <div id="d2" class="div">
            <div class="d"></div>
        </div>
    </div>
    <script src="jquery-1.8.3.min.js"></script>
    <script>
        var h = $(window).height();
        var h1 = h / 2;
        $(‘#d1,#d2‘).height(h1);
        $(‘.wrap,.d‘).height(h);
        $(‘#d2‘).css(‘top‘, h1);
        $(‘#d2 .d‘).css(‘margin-top‘, -h1);


        setTimeout(function () {
            $(‘#d1‘).animate({ ‘top‘: -h / 2 }, 3000);
            $(‘#d2‘).animate({ ‘top‘: h }, 3000, function () {
                $(‘.wrap‘).remove();
            });
        }, 2000);//一定时间后打开,1000=1秒


    </script>
</body>
</html>

一个简单的全屏图片上下打开显示网页效果,布布扣,bubuko.com

一个简单的全屏图片上下打开显示网页效果

标签:style   http   width   os   cti   html   

原文地址:http://blog.csdn.net/sweetsuzyhyf/article/details/37499769

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!