SoFunction
Updated on 2025-04-10

A simple example of opening a full-screen image to display web page effects

Check the effect on the source code:

<!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() center center no-repeat;
height: 100%;
}
</style>
</head>
<body>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<p>This is the content of the website</p>
<div class="wrap">
<div  class="div">
<div class="d"></div>
</div>
<div  class="div">
<div class="d"></div>
</div>
</div>
<script src="jquery-1.8."></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);//Open after a certain period of time, 1000=1 second
</script>
</body>
</html>