DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> 網頁特效代碼 >> jQuery+CSS3實現404跳傘動畫
jQuery+CSS3實現404跳傘動畫
編輯:網頁特效代碼     
效果:
http://hovertree.com/texiao/jquery/74/

源碼下載:
http://hovertree.com/h/bjaf/ko0gcgw5.htm

效果圖如下:


代碼如下:<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery+CSS3實現404背景動畫特效 - 何問起</title><base target="_blank" />
<link href="http://hovertree.com/texiao/jquery/74/css/404.css" rel="stylesheet" type="text/css" />
<script src="http://down.hovertree.com/jquery/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(function() {
var h = $(window).height();
$('body').height(h);
$('.mianBox').height(h);
centerWindow(".tipInfo");
});

//2.將盒子方法放入這個方,方便法統一調用
function centerWindow(a) {
center(a);
//自適應窗口
$(window).bind('scroll resize',
function() {
center(a);
});
}

//1.居中方法,傳入需要劇中的標簽
function center(a) {
var wWidth = $(window).width();
var wHeight = $(window).height();
var boxWidth = $(a).width();
var boxHeight = $(a).height();
var scrollTop = $(window).scrollTop();
var scrollLeft = $(window).scrollLeft();
var top = scrollTop + (wHeight - boxHeight) / 2;
var left = scrollLeft + (wWidth - boxWidth) / 2;
$(a).css({
"top": top,
"left": left
});
}
</script>
</head>
<body>
<div class="mianBox">
<img src="http://hovertree.com/texiao/jquery/74/images/yun0.png" alt="" class="yun yun0" />
<img src="http://hovertree.com/texiao/jquery/74/images/yun1.png" alt="" class="yun yun1" />
<img src="http://hovertree.com/texiao/jquery/74/images/yun2.png" alt="" class="yun yun2" />
<img src="http://hovertree.com/texiao/jquery/74/images/bird.png" alt="鳥" class="bird" />
<img src="http://hovertree.com/texiao/jquery/74/images/san.png" alt="何問起" class="san" />
<div class="tipInfo">
<div class="in">
<div class="textThis">
<h2>頁面不存在</h2>
<p><span>頁面將自動<a id="href" href="http://hovertree.com/h/bjaf/tiaosan.htm">跳轉</a></span><span>等待<b id="wait">60</b>秒</span></p>
<script type="text/javascript"> (function() {
var wait = document.getElementById('wait'), href = document.getElementById('href').href;
var interval = setInterval(function() {
var time = --wait.innerHTML;
if (time <= 0) {
location.href = href;
clearInterval(interval);
}
;
}, 1000);
})();
</script>
</div>
</div>
</div>
</div>

<div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
<p>適用浏覽器:360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗. 不支持IE8及以下浏覽器。</p>
<p>來源:<a href="http://hovertree.com/" target="_blank">何問起</a> <a href="http://hovertree.com/texiao/">特效</a> <a href="http://hovertree.com/h/bjaf/tiaosan.htm">原文</a></p>
</div>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved