一個(gè)簡(jiǎn)單的全屏圖片上下打開(kāi)顯示網(wǎng)頁(yè)效果示例
更新時(shí)間:2014年07月08日 11:50:31 投稿:whsnow
這是一個(gè)簡(jiǎn)單的全屏圖片上下打開(kāi)顯示網(wǎng)頁(yè)效果,源碼如下,喜歡的朋友可以練練手
上源碼看效果:
<!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>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</p>
<p>這是網(wǎng)站內(nèi)容</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);//一定時(shí)間后打開(kāi),1000=1秒
</script>
</body>
</html>
相關(guān)文章
ES6 Iterator接口和for...of循環(huán)用法分析
這篇文章主要介紹了ES6 Iterator接口和for...of循環(huán)用法,結(jié)合實(shí)例形式分析了Iterator接口和for...of循環(huán)相關(guān)使用技巧,需要的朋友可以參考下
2019-07-07
使用JavaScript獲取Request中參數(shù)的值方法
下面小編就為大家?guī)?lái)一篇使用JavaScript獲取Request中參數(shù)的值方法。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
2016-09-09
FireFox與IE 下js兼容觸發(fā)click事件的代碼
FireFox與IE 下js兼容觸發(fā)click事件 ,對(duì)于需要兼容這兩者的朋友,就需要參考下下面的代碼了
2008-11-11
Auntion-TableSort國(guó)人寫(xiě)的一個(gè)javascript表格排序的東西
Auntion-TableSort國(guó)人寫(xiě)的一個(gè)javascript表格排序的東西...
2007-11-11 
